mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-04-27 03:03:52 +00:00
This commit is contained in:
parent
c43e39205f
commit
1c5ace1e7f
15 changed files with 179 additions and 34 deletions
21
profile/3.3.5a-windows-386/include/bc/system_using/using.h
Normal file
21
profile/3.3.5a-windows-386/include/bc/system_using/using.h
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#ifndef BC_SYSTEM_USING_USING_H
|
||||
#define BC_SYSTEM_USING_USING_H
|
||||
|
||||
DECLARE_STRUCT(System_Using__UsingRec);
|
||||
DECLARE_STRUCT(System_Using__Depends);
|
||||
|
||||
struct System_Using__Depends {
|
||||
uint16_t id;
|
||||
System_Using__Depends* next;
|
||||
};
|
||||
|
||||
struct System_Using__UsingRec {
|
||||
char* name;
|
||||
uint16_t id;
|
||||
uint16_t refCount;
|
||||
void (*shutdownproc)();
|
||||
uint16_t dependCount;
|
||||
System_Using__Depends* depends;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue