diff options
author | George Hazan <ghazan@miranda.im> | 2018-05-03 16:02:14 +0200 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-05-03 16:02:14 +0200 |
commit | 3ad2582c4a4a6378f294f9256ecbcbdf0ae88e3a (patch) | |
tree | 412a28ef6a572efc7039df1c363bf47a3dec4b19 /include | |
parent | 9a6f750a482d1d1ebf4281bb7bf8133e547ad438 (diff) |
mir_forkThread<typename> - stronger typizatioin for thread function parameter
Diffstat (limited to 'include')
-rw-r--r-- | include/m_core.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/m_core.h b/include/m_core.h index 00ac529c3d..e5d7cbfb59 100644 --- a/include/m_core.h +++ b/include/m_core.h @@ -554,6 +554,12 @@ MIR_CORE_DLL(void) UnloadCoreModule(void); #if defined(__cplusplus)
}
+template <typename T>
+HANDLE mir_forkThread(void(__cdecl *pFunc)(T* param), T *arg)
+{
+ return mir_forkthread((pThreadFunc)pFunc, arg);
+}
+
template <size_t _Size>
inline int mir_snprintf(char(&buffer)[_Size], const char* fmt, ...)
{
|