You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
717 B
34 lines
717 B
/*++
|
|
|
|
Copyright (c) 1991-1999 Microsoft Corporation
|
|
All rights reserved
|
|
|
|
Module Name:
|
|
|
|
lmon.h
|
|
|
|
--*/
|
|
|
|
|
|
typedef struct _PORT_INFO_FFA {
|
|
LPSTR pName;
|
|
DWORD cbMonitorData;
|
|
LPBYTE pMonitorData;
|
|
} PORT_INFO_FFA, *PPORT_INFO_FFA, *LPPORT_INFO_FFA;
|
|
|
|
typedef struct _PORT_INFO_FFW {
|
|
LPWSTR pName;
|
|
DWORD cbMonitorData;
|
|
LPBYTE pMonitorData;
|
|
} PORT_INFO_FFW, *PPORT_INFO_FFW, *LPPORT_INFO_FFW;
|
|
|
|
#ifdef UNICODE
|
|
#define PORT_INFO_FF PORT_INFO_FFW
|
|
#define PPORT_INFO_FF PPORT_INFO_FFW
|
|
#define LPPORT_INFO_FF LPPORT_INFO_FFW
|
|
#else
|
|
#define PORT_INFO_FF PORT_INFO_FFA
|
|
#define PPORT_INFO_FF PPORT_INFO_FFA
|
|
#define LPPORT_INFO_FF LPPORT_INFO_FFA
|
|
#endif // UNICODE
|
|
|