/* injdll.h - Simple header file for injecting the DLL. Jason Hood, 20 June, 2009. */ #ifndef INJDLL_H #define INJDLL_H #define WIN32_LEAN_AND_MEAN #include void InjectDLL32( LPPROCESS_INFORMATION, LPCWSTR ); void InjectDLL64( LPPROCESS_INFORMATION, LPCWSTR ); #endif