diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-09-24 21:10:13 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-09-24 21:10:13 +0200 |
commit | ed0e93a3f863eb21cf7bc1c43ce529a7f8a82aec (patch) | |
tree | 0350c2e19e27df3b8b5b967b3f8a63c35c2675da /TestDLL | |
parent | c4f16dbaad0375dd7b6b302ac9252ffb938ce8d0 (diff) |
removed threaded version of LibEntry which will not work anyway w/o crt init
Diffstat (limited to 'TestDLL')
-rw-r--r-- | TestDLL/dllmain.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/TestDLL/dllmain.cpp b/TestDLL/dllmain.cpp index 39075b7..9b32451 100644 --- a/TestDLL/dllmain.cpp +++ b/TestDLL/dllmain.cpp @@ -12,13 +12,4 @@ void APIENTRY LibEntry(void) "TestDLL Notification", MB_OK | MB_ICONINFORMATION); } -} - -extern "C" __declspec(dllexport) -DWORD WINAPI LibEntryThreaded(_In_ LPVOID lpParameter) -{ - LibEntry(); - - ExitThread(0); - return 0; }
\ No newline at end of file |