1#include <windows.h> 2 3__declspec(dllexport) Init(SOCKET fd) 4{ 5 char passphrase[9] = { 0 }; 6 7 recv(fd, passphrase, 8, 0); 8 9 MessageBox(NULL, passphrase, "you sent me", MB_OK); 10 11 return 0; 12} 13 14