You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
213 B
11 lines
213 B
//////////////////////////////////////////////////////////////////
|
|
// ThreadDS.h
|
|
//
|
|
|
|
#ifndef __THREADDS_H__
|
|
#define __THREADDS_H__
|
|
|
|
DWORD WINAPI ThreadDSProc( LPVOID lpInfo );
|
|
|
|
#endif //__THREADDS_H__
|
|
|