- Temporarily move those headers from PSDK to DDK (due to svn awesomeness).
[reactos.git] / include / ddk / lmon.h
1
2 #ifdef UNICODE
3 #define PORT_INFO_FF PORT_INFO_FFW
4 #define PPORT_INFO_FF PPORT_INFO_FFW
5 #define LPPORT_INFO_FF LPPORT_INFO_FFW
6 #else
7 #define PORT_INFO_FF PORT_INFO_FFA
8 #define PPORT_INFO_FF PPORT_INFO_FFA
9 #define LPPORT_INFO_FF LPPORT_INFO_FFA
10 #endif
11
12 typedef struct _PORT_INFO_FFW {
13 LPWSTR pName;
14 DWORD cbMonitorData;
15 LPBYTE pMonitorData;
16 } PORT_INFO_FFW, *PPORT_INFO_FFW, *LPPORT_INFO_FFW;
17
18 typedef struct _PORT_INFO_FFA {
19 LPSTR pName;
20 DWORD cbMonitorData;
21 LPBYTE pMonitorData;
22 } PORT_INFO_FFA, *PPORT_INFO_FFA, *LPPORT_INFO_FFA;