hexchat/src/common/thread.h

13 lines
224 B
C
Raw Normal View History

#if 0 /* native file dialogs */
2011-02-28 12:59:32 -05:00
#include <windows.h>
typedef struct
{
DWORD threadid;
int pipe_fd[2];
} thread;
thread *thread_new (void);
int thread_start (thread *th, void *(*start_routine)(void *), void *arg);
#endif