ReactOS 0.4.15-dev-8092-ge0ba2f3
tlsmthread.c
Go to the documentation of this file.
1
8/*#ifndef WIN32_LEAN_AND_MEAN
9#define WIN32_LEAN_AND_MEAN
10#endif
11#include <windows.h>*/
12#include <stdlib.h>
13#include <windef.h>
14
15int __mingwthr_key_dtor (DWORD key, void (*dtor)(void *));
17
19extern int ___w64_mingwthr_add_key_dtor (DWORD key, void (*dtor)(void *));
20
21int
23{
25}
26
27int
28__mingwthr_key_dtor (DWORD key, void (*dtor)(void *))
29{
30 if (dtor)
31 {
32 return ___w64_mingwthr_add_key_dtor (key, dtor);
33 }
34 return 0;
35}
unsigned long DWORD
Definition: ntddk_ex.h:95
Definition: copy.c:22
int ___w64_mingwthr_remove_key_dtor(DWORD key)
Definition: tlsthrd.c:67
int __mingwthr_remove_key_dtor(DWORD key)
Definition: tlsmthread.c:22
int ___w64_mingwthr_add_key_dtor(DWORD key, void(*dtor)(void *))
Definition: tlsthrd.c:44
int __mingwthr_key_dtor(DWORD key, void(*dtor)(void *))
Definition: tlsmthread.c:28