feat(profile): add type information for CGxDevice functions

This commit is contained in:
phaneron 2024-10-04 01:43:35 -04:00
parent 5a70c8290f
commit 34d16625b7
9 changed files with 250 additions and 129 deletions

View file

@ -8,6 +8,8 @@
DECLARE_STRUCT(CAsyncObject);
DECLARE_STRUCT(TSLink_CAsyncObject);
STORM_TS_LIST(CAsyncObject);
struct CAsyncObject {
void* file;
void* buffer;
@ -26,6 +28,5 @@ struct CAsyncObject {
uint16_t padding;
TSLink_CAsyncObject link;
};
STORM_TS_LIST(CAsyncObject);
#endif