From ea0e84f9f03c8aea6702e232dca5c884da9730a0 Mon Sep 17 00:00:00 2001 From: Jason Hood Date: Sat, 13 Nov 2010 15:03:57 +1000 Subject: [PATCH] Remove ANSI-LLA.c --- ANSI-LLA.c | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 ANSI-LLA.c diff --git a/ANSI-LLA.c b/ANSI-LLA.c deleted file mode 100644 index 8f900b9..0000000 --- a/ANSI-LLA.c +++ /dev/null @@ -1,17 +0,0 @@ -/* - ANSI-LLA.c - Output the 32-bit address of LoadLibraryA. - - Jason Hood, 5 September, 2010. - - I don't know of a method to retrieve the 32-bit address of a function in - 64-bit code, so this is a simple workaround. -*/ - -#define WIN32_LEAN_AND_MEAN -#include - -int main( void ) -{ - return (DWORD)GetProcAddress( GetModuleHandleA( "kernel32.dll" ), - "LoadLibraryA" ); -}