comparison fuhtark_test/include/ddk/lmon.h @ 1500:91c8c3b7cbf0

add: futhark tests for generating vulkan api
author sam <sam@basx.dev>
date Wed, 26 Nov 2025 21:36:48 +0700
parents
children
comparison
equal deleted inserted replaced
1499:1f58458b7ef7 1500:91c8c3b7cbf0
1
2
3 #ifdef UNICODE
4 #define PORT_INFO_FF PORT_INFO_FFW
5 #define PPORT_INFO_FF PPORT_INFO_FFW
6 #define LPPORT_INFO_FF LPPORT_INFO_FFW
7 #else
8 #define PORT_INFO_FF PORT_INFO_FFA
9 #define PPORT_INFO_FF PPORT_INFO_FFA
10 #define LPPORT_INFO_FF LPPORT_INFO_FFA
11 #endif
12
13 typedef struct _PORT_INFO_FFW
14 {
15 LPWSTR pName;
16 DWORD cbMonitorData;
17 LPBYTE pMonitorData;
18 } PORT_INFO_FFW, *PPORT_INFO_FFW, *LPPORT_INFO_FFW;
19
20 typedef struct _PORT_INFO_FFA
21 {
22 LPSTR pName;
23 DWORD cbMonitorData;
24 LPBYTE pMonitorData;
25 } PORT_INFO_FFA, *PPORT_INFO_FFA, *LPPORT_INFO_FFA;
26
27