Counter Strike : Global Offensive Source Code
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.

22 lines
497 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. #ifndef _ERROR3D_H
  9. #define _ERROR3D_H
  10. typedef struct
  11. {
  12. DWORD dwObjectID;
  13. LPCTSTR pszReason;
  14. PVOID pInfo;
  15. } error3d;
  16. void Add3dError(DWORD dwObjectID, LPCTSTR pszReason, PVOID pInfo = NULL);
  17. error3d * Enum3dErrors(BOOL bStart = FALSE);
  18. int Get3dErrorCount();
  19. #endif // _ERROR3D_H