/* ############################################## ### (C) vbCrLf (at GMail), 2011 #### ### --- Written for DigitalWhisper #### ### http://www.digitalwhisper.co.il/ #### ############################################## * dll.h Injected DLL header file. */ #ifndef _DLL_H_ #define _DLL_H_ #include #if BUILDING_DLL # define DLLIMPORT __declspec (dllexport) #else # define DLLIMPORT __declspec (dllimport) #endif DWORD threadProc(LPVOID lpdwThreadParam); BOOL APIENTRY DllMain(HINSTANCE hInst, DWORD reason, LPVOID reserved); void message(const char *msg); #endif /* _DLL_H_ */