[NDK]
[reactos.git] / include / ddk / lmon.h
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