ansicon/injdll.h

22 lines
373 B
C
Raw Normal View History

2010-11-08 15:31:01 +10:00
/*
injdll.h - Simple header file for injecting the DLL.
Jason Hood, 20 June, 2009.
*/
#ifndef INJDLL_H
#define INJDLL_H
2010-11-15 21:51:38 +10:00
#ifndef UNICODE
# define UNICODE
#endif
2010-11-08 15:31:01 +10:00
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
2010-12-04 15:19:36 +10:00
BOOL ProcessType( LPPROCESS_INFORMATION );
2010-11-15 21:51:38 +10:00
void InjectDLL32( LPPROCESS_INFORMATION, LPCTSTR );
void InjectDLL64( LPPROCESS_INFORMATION, LPCTSTR );
2010-11-08 15:31:01 +10:00
#endif