blob: 8c2dd192b64fe62e8e53309cfff0591a33ce5eb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __SVCS_CLIST_H__
#define __SVCS_CLIST_H__
#include <windows.h>
int __cdecl onContactSettingChanged(WPARAM,LPARAM);
int __cdecl onContactAdded(WPARAM,LPARAM);
int __cdecl onContactDeleted(WPARAM,LPARAM);
int __cdecl onExtraImageListRebuilding(WPARAM,LPARAM);
int __cdecl onExtraImageApplying(WPARAM,LPARAM);
int __cdecl onRebuildContactMenu(WPARAM,LPARAM);
#endif
|