mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-17 09:32:22 -07:00
check type server signature against signature in obj
This commit is contained in:
@@ -207,11 +207,24 @@ typedef struct CV_UDTInfo
|
||||
|
||||
typedef struct CV_TypeServerInfo
|
||||
{
|
||||
String8 name;
|
||||
COFF_Guid sig;
|
||||
U32 age;
|
||||
String8 name;
|
||||
OS_Guid sig;
|
||||
U32 age;
|
||||
} CV_TypeServerInfo;
|
||||
|
||||
typedef struct CV_TypeServerInfoNode
|
||||
{
|
||||
struct CV_TypeServerInfoNode *next;
|
||||
CV_TypeServerInfo data;
|
||||
} CV_TypeServerInfoNode;
|
||||
|
||||
typedef struct CV_TypeServerInfoList
|
||||
{
|
||||
CV_TypeServerInfoNode *first;
|
||||
CV_TypeServerInfoNode *last;
|
||||
U64 count;
|
||||
} CV_TypeServerInfoList;
|
||||
|
||||
typedef struct CV_PrecompInfo
|
||||
{
|
||||
CV_TypeIndex start_index;
|
||||
|
||||
Reference in New Issue
Block a user