Remove obsolete files.

This commit is contained in:
Jason Hood 2010-12-12 21:59:54 +10:00
parent b9d2207742
commit 0c1ddeb8ea
2 changed files with 0 additions and 39 deletions

View File

@ -1,18 +0,0 @@
// ========== Auxiliary debug function
#define MYDEBUG 0 // no debugging
//#define MYDEBUG 1 // use OutputDebugString
//#define MYDEBUG 2 // use %temp%\ansicon.log
#if (MYDEBUG > 0)
# if (MYDEBUG > 1)
char tempfile[MAX_PATH];
# endif
void DEBUGSTR( LPTSTR szFormat, ... );
#else
# if defined(_MSC_VER) && _MSC_VER <= 1400
void DEBUGSTR() { }
# else
# define DEBUGSTR(...)
# endif
#endif

View File

@ -1,21 +0,0 @@
/*
injdll.h - Simple header file for injecting the DLL.
Jason Hood, 20 June, 2009.
*/
#ifndef INJDLL_H
#define INJDLL_H
#ifndef UNICODE
# define UNICODE
#endif
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
BOOL ProcessType( LPPROCESS_INFORMATION );
void InjectDLL32( LPPROCESS_INFORMATION, LPCTSTR );
void InjectDLL64( LPPROCESS_INFORMATION, LPCTSTR );
#endif