mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
333 B
11 lines
333 B
|
|
#include <windows.h>
|
|
#include "defs.h"
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved);
|
|
void WINAPI HighlightWindow(HWND hwnd);
|
|
|
|
EXPORT LRESULT CALLBACK HookProc(int nCode, WPARAM wParam, LPARAM lParam);
|
|
EXPORT BOOL CALLBACK SetWindowHandle(HWND hwnd);
|
|
EXPORT BOOL CALLBACK SetHook(BOOL bInstall);
|
|
|