mirror of https://github.com/tongzx/nt5src
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
22 lines
474 B
#pragma once
|
|
|
|
#define LHC_MAX_OPEN_OBJECTS 64
|
|
|
|
typedef struct __LIBRARY_NODE
|
|
{
|
|
GUID m_Secret;
|
|
PLIBRARY_DESCRIPTOR m_pLibrary;
|
|
struct __LIBRARY_NODE* m_pNext;
|
|
} LIBRARY_NODE, *PLIBRARY_NODE;
|
|
|
|
|
|
typedef struct __LHCSTRUCT
|
|
{
|
|
GUID m_Secret;
|
|
PLHCOBJECT_DESCRIPTOR m_pObject;
|
|
PLIBRARY_DESCRIPTOR m_pLibrary;
|
|
struct __LHCSTRUCT* m_pNext;
|
|
struct __LHCSTRUCT** m_ppThis;
|
|
} LHCSTRUCT, *PLHCSTRUCT;
|
|
|
|
|