Skip to content

Instantly share code, notes, and snippets.

@ruccho
Created May 24, 2019 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ruccho/44ce38802c3e3bbc7d5352b0d4448e82 to your computer and use it in GitHub Desktop.
Save ruccho/44ce38802c3e3bbc7d5352b0d4448e82 to your computer and use it in GitHub Desktop.
HSPでTopMostなウィンドウにするやつ
#include "user32.as"
#define HWND_TOPMOST -1
#define SWP_NOSIZE 0x0001
#define SWP_NOMOVE 0x0002
SetWindowPos hwnd, HWND_TOPMOST, 0, 0, 0, 0, (SWP_NOMOVE | SWP_NOSIZE)
stop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment