summary refs log tree commit diff stats
path: root/win32/wdkpt/vs2010/Microsoft.Cpp.x64.WDK7.targets
AgeCommit message (Expand)Author
2012-10-04Provide sources for both platform toolsetBerke Viktor










                                                                         
#include <windows.h>

typedef struct
{
	DWORD threadid;
	int pipe_fd[2];
	void *userdata;
} thread;

thread *thread_new (void);
int thread_start (thread *th, void *(*start_routine)(void *), void *arg);