mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
10 lines
208 B
C
10 lines
208 B
C
#pragma once
|
|
#include <windows.h>
|
|
|
|
/*
|
|
* ref: https://learn.microsoft.com/en-us/windows/win32/api/windef/ns-windef-point
|
|
*/
|
|
typedef struct tagPOINT {
|
|
LONG x;
|
|
LONG y;
|
|
} POINT, *PPOINT, *NPPOINT, *LPPOINT; |