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.

22 lines
474 B

  1. #pragma once
  2. #define LHC_MAX_OPEN_OBJECTS 64
  3. typedef struct __LIBRARY_NODE
  4. {
  5. GUID m_Secret;
  6. PLIBRARY_DESCRIPTOR m_pLibrary;
  7. struct __LIBRARY_NODE* m_pNext;
  8. } LIBRARY_NODE, *PLIBRARY_NODE;
  9. typedef struct __LHCSTRUCT
  10. {
  11. GUID m_Secret;
  12. PLHCOBJECT_DESCRIPTOR m_pObject;
  13. PLIBRARY_DESCRIPTOR m_pLibrary;
  14. struct __LHCSTRUCT* m_pNext;
  15. struct __LHCSTRUCT** m_ppThis;
  16. } LHCSTRUCT, *PLHCSTRUCT;