25d860aab0
git-svn-id: file:///home/svn/framework3/trunk@4403 4d416f70-5f16-0410-b530-b9f4589650da
13 lines
189 B
C
13 lines
189 B
C
#include <windows.h>
|
|
|
|
__declspec(dllexport) Init(SOCKET fd)
|
|
{
|
|
char passphrase[9] = { 0 };
|
|
|
|
recv(fd, passphrase, 8, 0);
|
|
|
|
MessageBox(NULL, passphrase, "you sent me", MB_OK);
|
|
|
|
return 0;
|
|
}
|