blob: b7e38dd3f67209bf32ba005e9ec973e136afee34 (
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 "stdafx.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
|