diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-09-29 11:15:19 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-09-29 11:15:19 +0200 |
commit | 955085e7ff3538a3e1bfc35f19670fb6c59b3ae7 (patch) | |
tree | 886ca684fab0c075d532238a5b1a824b8d10ad8e /TestDLL | |
parent | 24ceb42147a0a1de2ce6e522b47976d725bc587a (diff) |
acrt and vcrt function stubs
Diffstat (limited to 'TestDLL')
-rw-r--r-- | TestDLL/dllmain.cpp | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/TestDLL/dllmain.cpp b/TestDLL/dllmain.cpp index eddfae4..2cbb478 100644 --- a/TestDLL/dllmain.cpp +++ b/TestDLL/dllmain.cpp @@ -124,6 +124,26 @@ WRAPPER_FUNCTION(SYM_WCSNLEN, wcsnlen, size_t, const wchar_t *str, size_t n) { return RUN_REAL_FN(SYM_WCSNLEN, str, n); } +extern "C" +void __vcrt_initialize() {} +extern "C" +void __vcrt_uninitialize() {} +extern "C" +void __vcrt_uninitialize_critical() {} +extern "C" +void __vcrt_thread_attach() {} +extern "C" +void __vcrt_thread_detach() {} +extern "C" +void __acrt_initialize() {} +extern "C" +void __acrt_uninitialize() {} +extern "C" +void __acrt_uninitialize_critical() {} +extern "C" +void __acrt_thread_attach() {} +extern "C" +void __acrt_thread_detach() {} extern "C" static bool resolve_all_symbols(void) { @@ -174,7 +194,7 @@ void APIENTRY LibEntry(PVOID user_ptr) text = "DllMain from TestDLL: "; blubb.push_back(1); blubb.push_back(2); - std::stringstream muh; + //std::stringstream muh; //muh << "bla" << "," << "blubb"; MessageBoxA(NULL, text.c_str(), |