Initial Import

This commit is contained in:
Joachim Bauch
2004-10-09 18:45:48 +00:00
commit 784d39dc08
2 changed files with 473 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
/*
* Memory DLL loading code
* Version 1.0.0
*
* Copyright (c) 2004 by Joachim Bauch / mail@joachim-bauch.de
* http://www.joachim-bauch.de
*
* Released under the Lesser General Public License (LGPL)
*
*/
#ifndef __MEMORY_MODULE_HEADER
#define __MEMORY_MODULE_HEADER
#include <Windows.h>
typedef void *HMEMORYMODULE;
#ifdef __cplusplus
extern "C" {
#endif
HMEMORYMODULE MemoryLoadLibrary(const void *, const size_t);
FARPROC MemoryGetProcAddress(HMEMORYMODULE, const char *);
void MemoryFreeLibrary(HMEMORYMODULE);
#ifdef __cplusplus
}
#endif
#endif // __MEMORY_MODULE_HEADER