blob: 64ce1c43a39ae1955682bdaa0590adf0e7b4780f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __SVCS_PROTO_H__
#define __SVCS_PROTO_H__
#include <windows.h>
INT_PTR __cdecl onRecvMsg(WPARAM,LPARAM);
INT_PTR __cdecl onSendMsgW(WPARAM,LPARAM);
INT_PTR __cdecl onSendMsg(WPARAM,LPARAM);
INT_PTR __cdecl onSendFile(WPARAM,LPARAM);
int __cdecl onProtoAck(WPARAM,LPARAM);
int __cdecl onContactSettingChanged(WPARAM,LPARAM);
#endif
|