From 0c1ddeb8eaca10b275e083d341200034e955f2f8 Mon Sep 17 00:00:00 2001 From: Jason Hood Date: Sun, 12 Dec 2010 21:59:54 +1000 Subject: [PATCH] Remove obsolete files. --- debugstr.h | 18 ------------------ injdll.h | 21 --------------------- 2 files changed, 39 deletions(-) delete mode 100644 debugstr.h delete mode 100644 injdll.h diff --git a/debugstr.h b/debugstr.h deleted file mode 100644 index a366167..0000000 --- a/debugstr.h +++ /dev/null @@ -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 diff --git a/injdll.h b/injdll.h deleted file mode 100644 index 7f02ca7..0000000 --- a/injdll.h +++ /dev/null @@ -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 - -BOOL ProcessType( LPPROCESS_INFORMATION ); -void InjectDLL32( LPPROCESS_INFORMATION, LPCTSTR ); -void InjectDLL64( LPPROCESS_INFORMATION, LPCTSTR ); - -#endif