mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
c501d8112c
svn path=/branches/aicom-network-fixes/; revision=34994
38 lines
811 B
C
38 lines
811 B
C
|
|
#ifndef __ERRORS__
|
|
#define __ERRORS__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef _AMOVIE_
|
|
#define AMOVIEAPI DECLSPEC_IMPORT
|
|
#else
|
|
#define AMOVIEAPI
|
|
#endif
|
|
|
|
#define VFW_FIRST_CODE 0x200
|
|
#define MAX_ERROR_TEXT_LEN 160
|
|
|
|
#include <vfwmsgs.h>
|
|
|
|
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
|
|
#endif
|
|
|