2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 05:57:52 +00:00

type changes for _beginthreadex

This commit is contained in:
Bob Halley 1998-10-23 23:02:01 +00:00
parent 4bed2e84a3
commit b07a162e29

View File

@ -7,8 +7,8 @@
#include <isc/result.h>
typedef HANDLE isc_thread_t;
typedef DWORD isc_threadresult_t;
typedef LPVOID isc_threadarg_t;
typedef unsigned int isc_threadresult_t;
typedef void * isc_threadarg_t;
typedef isc_threadresult_t (WINAPI *isc_threadfunc_t)(isc_threadarg_t);
isc_result_t isc_thread_create(isc_threadfunc_t, isc_threadarg_t,