ReactOS 0.4.16-dev-937-g7afcd2a
threaddll.c
Go to the documentation of this file.
1/*
2 * Copyright 2021 Arkadiusz Hiler for CodeWeavers
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17 */
18
19#if 0
20#pragma makedep testdll
21#endif
22
23#include <windows.h>
24
25#include "threaddll.h"
26
28
29void CDECL _endthread(void);
30void CDECL _endthreadex(unsigned int);
31
33{
35}
36
37static unsigned internal_thread_proc(void *param)
38{
39 struct threaddll_args *args = param;
40 SetEvent(args->confirm_running);
42
43 if (args->exit_method == thread_exit_endthread)
44 _endthread();
45 else if (args->exit_method == thread_exit_endthreadex)
46 _endthreadex(0);
47
48 return 0;
49}
50
52{
54}
55
57{
59}
60
62{
63 switch (reason)
64 {
67 break;
68 }
69
70 return TRUE;
71}
#define TRUE
Definition: types.h:120
static WCHAR reason[MAX_STRING_RESOURCE_LEN]
Definition: object.c:1904
#define CDECL
Definition: compat.h:29
#define DLL_PROCESS_DETACH
Definition: compat.h:130
r reserved
Definition: btrfs.c:3006
#define INFINITE
Definition: serial.h:102
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
struct _cl_event * event
Definition: glext.h:7739
GLfloat param
Definition: glext.h:5796
Definition: match.c:390
DWORD WINAPI WaitForSingleObject(IN HANDLE hHandle, IN DWORD dwMilliseconds)
Definition: synch.c:82
BOOL WINAPI DECLSPEC_HOTPATCH SetEvent(IN HANDLE hEvent)
Definition: synch.c:733
void CDECL _endthread(void)
Definition: thread.c:95
void CDECL cdecl_thread_proc(void *param)
Definition: threaddll.c:56
static HANDLE detach_event
Definition: threaddll.c:27
void CDECL _endthreadex(unsigned int)
Definition: thread.cpp:276
unsigned WINAPI stdcall_thread_proc(void *param)
Definition: threaddll.c:51
static unsigned internal_thread_proc(void *param)
Definition: threaddll.c:37
BOOL WINAPI DllMain(HINSTANCE instance_new, DWORD reason, LPVOID reserved)
Definition: threaddll.c:61
void WINAPI set_detach_event(HANDLE event)
Definition: threaddll.c:32
@ thread_exit_endthreadex
Definition: threaddll.h:22
@ thread_exit_endthread
Definition: threaddll.h:21
#define WINAPI
Definition: msvc.h:6