summaryrefslogtreecommitdiffhomepage
path: root/src/internal
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-09-25 22:22:31 -0400
committermidipix <writeonce@midipix.org>2015-09-26 14:46:43 -0400
commitf4b4a3bcc6d68b4ca4604a3c751277ed45902281 (patch)
treeaaf10c0f4c8755035d04e96d6c1b9a6edde12b55 /src/internal
parent18eb4842536d1c9df278e7f65c16ce5679b99d39 (diff)
downloadpemagine-f4b4a3bcc6d68b4ca4604a3c751277ed45902281.tar.bz2
pemagine-f4b4a3bcc6d68b4ca4604a3c751277ed45902281.tar.xz
normalize the name of the library's entry point.
Diffstat (limited to 'src/internal')
-rw-r--r--src/internal/pe_entry_point.c6
-rw-r--r--src/internal/pe_lib_entry_point.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/internal/pe_entry_point.c b/src/internal/pe_entry_point.c
new file mode 100644
index 0000000..e76f137
--- /dev/null
+++ b/src/internal/pe_entry_point.c
@@ -0,0 +1,6 @@
+#include <psxtypes/psxtypes.h>
+
+int __stdcall pe_entry_point(void * hinstance, uint32_t reason, void * reserved)
+{
+ return 1;
+}
diff --git a/src/internal/pe_lib_entry_point.c b/src/internal/pe_lib_entry_point.c
deleted file mode 100644
index efdaa26..0000000
--- a/src/internal/pe_lib_entry_point.c
+++ /dev/null
@@ -1,6 +0,0 @@
-#include <psxtypes/psxtypes.h>
-
-int __stdcall pe_lib_entry_point(void * hinstance, uint32_t reason, void * reserved)
-{
- return 1;
-}