summaryrefslogtreecommitdiffstats
path: root/dxsdk/Include/errors.h
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-08-02 18:36:50 +0200
committerSergeanur <s.anureev@yandex.ua>2020-08-02 18:36:50 +0200
commita786dd45a4ebc6b91936b5e46d0ef0a9befc05af (patch)
treeced50966eaaf373f8733547046baf2bdc558662d /dxsdk/Include/errors.h
parentMerge branch 'master' of https://github.com/GTAmodding/re3 into erorcun (diff)
downloadre3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.gz
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.bz2
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.lz
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.xz
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.zst
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.zip
Diffstat (limited to 'dxsdk/Include/errors.h')
-rw-r--r--dxsdk/Include/errors.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/dxsdk/Include/errors.h b/dxsdk/Include/errors.h
deleted file mode 100644
index cee756fb..00000000
--- a/dxsdk/Include/errors.h
+++ /dev/null
@@ -1,47 +0,0 @@
-//------------------------------------------------------------------------------
-// File: Errors.h
-//
-// Desc: ActiveMovie error defines.
-//
-// Copyright (c) 1992-2001, Microsoft Corporation. All rights reserved.
-//------------------------------------------------------------------------------
-
-
-#ifndef __ERRORS__
-#define __ERRORS__
-
-#ifdef __cplusplus
-extern "C" {
-#endif // __cplusplus
-
-#ifndef _AMOVIE_
-#define AMOVIEAPI DECLSPEC_IMPORT
-#else
-#define AMOVIEAPI
-#endif
-
-// codes 0-01ff are reserved for OLE
-#define VFW_FIRST_CODE 0x200
-#define MAX_ERROR_TEXT_LEN 160
-
-#include <vfwmsgs.h> // includes all message definitions
-
-typedef BOOL (WINAPI* AMGETERRORTEXTPROCA)(HRESULT, char *, DWORD);
-typedef BOOL (WINAPI* AMGETERRORTEXTPROCW)(HRESULT, WCHAR *, DWORD);
-
-AMOVIEAPI DWORD WINAPI AMGetErrorTextA( HRESULT hr , char *pbuffer , DWORD MaxLen);
-AMOVIEAPI DWORD WINAPI AMGetErrorTextW( HRESULT hr , WCHAR *pbuffer , DWORD MaxLen);
-
-
-#ifdef UNICODE
-#define AMGetErrorText AMGetErrorTextW
-typedef AMGETERRORTEXTPROCW AMGETERRORTEXTPROC;
-#else
-#define AMGetErrorText AMGetErrorTextA
-typedef AMGETERRORTEXTPROCA AMGETERRORTEXTPROC;
-#endif
-
-#ifdef __cplusplus
-}
-#endif // __cplusplus
-#endif // __ERRORS__