2012-07-18 22:16:35 +04:00
|
|
|
#if 0 /* native file dialogs */
|
2011-02-28 20:59:32 +03: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);
|
2012-07-18 22:16:35 +04:00
|
|
|
#endif
|