mirror of
https://github.com/celisej567/source-engine.git
synced 2026-01-04 18:09:53 +03:00
1
This commit is contained in:
23
hammer/error3d.h
Normal file
23
hammer/error3d.h
Normal file
@@ -0,0 +1,23 @@
|
||||
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $NoKeywords: $
|
||||
//
|
||||
//=============================================================================//
|
||||
|
||||
#ifndef _ERROR3D_H
|
||||
#define _ERROR3D_H
|
||||
|
||||
typedef struct
|
||||
{
|
||||
DWORD dwObjectID;
|
||||
LPCTSTR pszReason;
|
||||
PVOID pInfo;
|
||||
} error3d;
|
||||
|
||||
void Add3dError(DWORD dwObjectID, LPCTSTR pszReason, PVOID pInfo = NULL);
|
||||
error3d * Enum3dErrors(BOOL bStart = FALSE);
|
||||
int Get3dErrorCount();
|
||||
|
||||
#endif // _ERROR3D_H
|
||||
Reference in New Issue
Block a user