11typedef HANDLE hashx_thread;
12typedef DWORD hashx_thread_retval;
13#define HASHX_THREAD_SUCCESS 0
16typedef pthread_t hashx_thread;
17typedef void* hashx_thread_retval;
18#define HASHX_THREAD_SUCCESS NULL
21typedef hashx_thread_retval hashx_thread_func(
void* args);
23hashx_thread hashx_thread_create(hashx_thread_func* func,
void* args);
25void hashx_thread_join(hashx_thread thread);