summaryrefslogtreecommitdiff
path: root/dedicated/vgui/vguihelpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'dedicated/vgui/vguihelpers.h')
-rw-r--r--dedicated/vgui/vguihelpers.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/dedicated/vgui/vguihelpers.h b/dedicated/vgui/vguihelpers.h
new file mode 100644
index 0000000..e29203e
--- /dev/null
+++ b/dedicated/vgui/vguihelpers.h
@@ -0,0 +1,26 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+//===========================================================================//
+
+#ifndef VGUIHELPERS_H
+#define VGUIHELPERS_H
+
+#ifdef _WIN32
+#pragma once
+#endif
+
+#include "tier1/interface.h"
+
+int StartVGUI( CreateInterfaceFn dedicatedFactory );
+void StopVGUI();
+void RunVGUIFrame();
+bool VGUIIsRunning();
+bool VGUIIsStopping();
+bool VGUIIsInConfig();
+void VGUIFinishedConfig();
+void VGUIPrintf( const char *msg );
+
+#endif // VGUIHELPERS_H
+