mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
20 lines
576 B
C
20 lines
576 B
C
|
#pragma once
|
||
|
|
||
|
namespace vgui
|
||
|
{
|
||
|
// handle to an internal vgui panel
|
||
|
// this is the only handle to a panel that is valid across dll boundaries
|
||
|
typedef unsigned int VPANEL;
|
||
|
|
||
|
// handles to vgui objects
|
||
|
// NULL values signify an invalid value
|
||
|
typedef unsigned long HScheme;
|
||
|
// Both -1 and 0 are used for invalid textures. Be careful.
|
||
|
typedef unsigned long HTexture;
|
||
|
typedef unsigned long HCursor;
|
||
|
typedef unsigned long HPanel;
|
||
|
const HPanel INVALID_PANEL = 0xffffffff;
|
||
|
typedef unsigned long HFont;
|
||
|
const HFont INVALID_FONT = 0; // the value of an invalid font handle
|
||
|
}
|