check type server signature against signature in obj

This commit is contained in:
Nikita Smith
2024-10-17 13:56:33 -07:00
parent 7adf08cc7b
commit d2db4542cb
6 changed files with 199 additions and 85 deletions
+16 -3
View File
@@ -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;