blob: 97a4ed3008abc7790be492f904446a8f5146eb42 (
plain) (
tree)
|
|
#if 0 /* native file dialogs */
#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
|