You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
332 B
19 lines
332 B
#if defined(TEST_PLUGABLE) && defined(_DEBUG)
|
|
|
|
#ifndef _FT_PLUGABLE_H_
|
|
#define _FT_PLUGABLE_H_
|
|
|
|
#define WM_PLUGABLE_SOCKET (WM_APP + 0x601)
|
|
|
|
|
|
void OnPluggableBegin(HWND hwnd);
|
|
void OnPluggableEnd(void);
|
|
|
|
LRESULT OnPluggableSocket(HWND, WPARAM, LPARAM);
|
|
|
|
|
|
|
|
#endif // _FT_PLUGABLE_H_
|
|
|
|
#endif // TEST_PLUGABLE
|
|
|