mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +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
24
profile/3.3.5a-windows-386/include/screen/layer.h
Normal file
24
profile/3.3.5a-windows-386/include/screen/layer.h
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#ifndef SCREEN_LAYER_H
|
||||
#define SCREEN_LAYER_H
|
||||
|
||||
#include "storm/list.h"
|
||||
#include "common/handle.h"
|
||||
#include "storm/region/rect.h"
|
||||
|
||||
DECLARE_HANDLE(HLAYER);
|
||||
|
||||
DECLARE_STRUCT(CILayer);
|
||||
|
||||
STORM_TS_LIST(CILayer);
|
||||
struct CILayer {
|
||||
CHandleObject b_base;
|
||||
RECTF rect;
|
||||
RECTF visible;
|
||||
float zorder;
|
||||
uint32_t flags;
|
||||
void* param;
|
||||
void (*paintfunc)(void*, RECTF*, RECTF*, float);
|
||||
TSLink_CILayer zorderlink;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue