blob: 7f6ea17ff367e2b204b9a5e19301c010743df867 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef M_CKL_HOOK_EVENTS_H
#define M_CKL_HOOK_EVENTS_H
#include "commonheaders.h"
BOOL CoreCheck();
void ReadMainOptions();
void WriteMainOptions();
void ReadPopupOptions();
void WritePopupOptions();
extern int OnOptionsInitialise(WPARAM wParam, LPARAM lParam);
extern int ModulesLoaded(WPARAM wParam, LPARAM lParam);
int CALLBACK CKLPopupDlgProc(HWND hWnd, UINT uiMessage, WPARAM wParam, LPARAM lParam);
#endif
|