Added cleaned up structs and classes to proper header files.

This commit is contained in:
Justin Marshall
2026-08-08 17:17:36 -07:00
parent 2b5e5a2c2a
commit 61cb846dd5
791 changed files with 85858 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
#pragma once
// Reconstructed C++ declarations from IDA Local Types and PDB/DIA metadata.
// Original PDB header: w:\tech5\tungsten\superscript\lib\cvars.h
// Recovered logical types: 3
// Signatures retain Xbox 360 ABI evidence and may still require manual review.
// IDA Local Type ordinal 12232; PDB kind: struct.
struct idCVar::cvarCallback_t
{
idCallback *callback;
idCVar::cvarCallback_t *next;
};
// IDA Local Type ordinal 12233; PDB kind: class.
class idCVar
{
public:
idStr valueString;
int valueInteger;
float valueFloat;
const char *name;
const char *resetString;
const char *description;
int flags;
float valueMin;
float valueMax;
const char **valueStrings;
void (__fastcall *valueCompletion)(idAutoComplete *);
idCVar::cvarCallback_t *onChange;
idCVar *next;
};
// IDA Local Type ordinal 13276; PDB kind: class.
class cvar_
{
public:
// Recovered virtual interface; IDA vtable ordinal 13277.
virtual void RegisterCVar();
cvar_ *nextStaticCVar;
};