1
0
mirror of https://github.com/EduApps-CDG/OpenDX synced 2024-12-30 09:45:37 +01:00
OpenDX/prod_include/windef.h

10 lines
208 B
C
Raw Permalink Normal View History

#pragma once
2023-09-20 21:52:09 -03:00
#include <windows.h>
2023-09-20 21:52:09 -03:00
/*
* 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;