blob: 992c7cd0c31acc0775dacb4e0fd54bdb887ad4ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef M_CKL_HOOK_EVENTS_H
#define M_CKL_HOOK_EVENTS_H
#include "commonheaders.h"
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
|