16 lines
211 B
C
16 lines
211 B
C
|
#ifndef PORT_H
|
||
|
#define PORT_H
|
||
|
|
||
|
// a1ba: customized port.h for HLSDK 2.2/TheWastes
|
||
|
|
||
|
#ifndef _WIN32
|
||
|
typedef struct POINT_s
|
||
|
{
|
||
|
int x;
|
||
|
int y;
|
||
|
} POINT;
|
||
|
typedef unsigned int DWORD;
|
||
|
#endif // _WIN32
|
||
|
|
||
|
#endif // PORT_H
|