Source code of Windows XP (NT5)
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
683 B

  1. /*++
  2. Copyright (c) 1991-1999 Microsoft Corporation
  3. All rights reserved
  4. Module Name:
  5. lmon.h
  6. --*/
  7. typedef struct _PORT_INFO_FFA {
  8. LPSTR pName;
  9. DWORD cbMonitorData;
  10. LPBYTE pMonitorData;
  11. } PORT_INFO_FFA, *PPORT_INFO_FFA, *LPPORT_INFO_FFA;
  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. #ifdef UNICODE
  18. #define PORT_INFO_FF PORT_INFO_FFW
  19. #define PPORT_INFO_FF PPORT_INFO_FFW
  20. #define LPPORT_INFO_FF LPPORT_INFO_FFW
  21. #else
  22. #define PORT_INFO_FF PORT_INFO_FFA
  23. #define PPORT_INFO_FF PPORT_INFO_FFA
  24. #define LPPORT_INFO_FF LPPORT_INFO_FFA
  25. #endif // UNICODE