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.

41 lines
1.0 KiB

  1. // ***************************************************************************
  2. // MODULE: SSP.H
  3. //
  4. // Bloodhound parser DLL for SSP.
  5. //
  6. // A-FLEXD AUGUST 14, 1996 CREATED
  7. // ***************************************************************************
  8. #include <windows.h>
  9. #include <string.h>
  10. #include <ctype.h>
  11. #include <netmon.h>
  12. VOID WINAPIV SSPFormatSummary(LPPROPERTYINST lpPropertyInst);
  13. // ***************************************************************************
  14. // Property Table.
  15. // ***************************************************************************
  16. extern PROPERTYINFO SSPDatabase[];
  17. extern DWORD nSSPProperties;
  18. // ***************************************************************************
  19. #pragma pack(1)
  20. // Signature structure
  21. typedef struct _NTLMSSP_MESSAGE_SIGNATURE
  22. {
  23. ULONG Version;
  24. ULONG RandomPad;
  25. ULONG CheckSum;
  26. ULONG Nonce;
  27. } NTLMSSP_MESSAGE_SIGNATURE, * PNTLMSSP_MESSAGE_SIGNATURE;
  28. #pragma pack()
  29. // ***************************************************************************