- removed parameter "size" from "MemoryLoadLibrary" as it wasn't used

- updated import table loading code, now also works with Delphi .bpl files
- updated section copying code for uninitialized sections
This commit is contained in:
Joachim Bauch
2004-10-31 12:29:52 +00:00
parent e32c546536
commit a7a9eda6c4
3 changed files with 17 additions and 14 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ void LoadFromMemory(void)
fread(data, 1, size, fp);
fclose(fp);
module = MemoryLoadLibrary(data, size);
module = MemoryLoadLibrary(data);
if (module == NULL)
{
printf("Can't load library from memory.\n");