You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
484 B
23 lines
484 B
5 years ago
|
//========= 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
|