mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 01:42:29 +00:00
feat(profile): update 3.3.5a profile
This commit is contained in:
parent
9053d61b6b
commit
e1bab2b375
186 changed files with 1204 additions and 43942 deletions
31
profile/3.3.5a-windows-386/include/async/object.h
Normal file
31
profile/3.3.5a-windows-386/include/async/object.h
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
#ifndef ASYNC_OBJECT_H
|
||||
#define ASYNC_OBJECT_H
|
||||
|
||||
#include "storm/list.h"
|
||||
|
||||
DECLARE_STRUCT(CAsyncObject);
|
||||
STORM_TS_LIST(CAsyncObject);
|
||||
|
||||
#include "system/types.h"
|
||||
#include "async/queue.h"
|
||||
|
||||
struct CAsyncObject {
|
||||
void* file;
|
||||
void* buffer;
|
||||
uint32_t size;
|
||||
void* userArg;
|
||||
void* userPostloadCallback;
|
||||
void* userPostUnloadCallback;
|
||||
CAsyncQueue* queue;
|
||||
void* ptr1c;
|
||||
int8_t priority;
|
||||
int8_t isProcessed;
|
||||
int8_t isRead;
|
||||
int8_t isCurrent;
|
||||
int8_t char24;
|
||||
int8_t char25;
|
||||
uint16_t padding;
|
||||
TSLink_CAsyncObject link;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue