mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-04-28 11:23:50 +00:00
fix(profile): overhaul 3.3.5a-windows-386 to work with SuperImportSymbolsScript.py
This commit is contained in:
parent
bdb3389efb
commit
2d003672ec
39 changed files with 1476 additions and 1232 deletions
19
profile/3.3.5a-windows-386/include/external/d3d9/cmpfunc.h
vendored
Normal file
19
profile/3.3.5a-windows-386/include/external/d3d9/cmpfunc.h
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#ifndef D3D9_CMP_FUNC_H
|
||||
#define D3D9_CMP_FUNC_H
|
||||
|
||||
DECLARE_ENUM(D3DCMPFUNC);
|
||||
|
||||
enum D3DCMPFUNC {
|
||||
D3DCMP_NEVER = 1,
|
||||
D3DCMP_LESS = 2,
|
||||
D3DCMP_EQUAL = 3,
|
||||
D3DCMP_LESSEQUAL = 4,
|
||||
D3DCMP_GREATER = 5,
|
||||
D3DCMP_NOTEQUAL = 6,
|
||||
D3DCMP_GREATEREQUAL = 7,
|
||||
D3DCMP_ALWAYS = 8,
|
||||
|
||||
D3DCMP_FORCE_DWORD = 0x7fffffff
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue