Implemented processing for actions: SPI_GET/SETGRIDGRANULARITY,
[wine] / include / errors.h
1 #ifndef WINE_DSHOW_ERRORS_H
2 #define WINE_DSHOW_ERRORS_H
3
4 #include "vfwmsgs.h"
5
6 #define MAX_ERROR_TEXT_LEN      160
7
8 #ifdef __cplusplus
9 extern "C" {
10 #endif /* __cplusplus */
11
12 DWORD WINAPI AMGetErrorTextA(HRESULT hr, LPSTR pszbuf, DWORD dwBufLen);
13 DWORD WINAPI AMGetErrorTextW(HRESULT hr, LPWSTR pwszbuf, DWORD dwBufLen);
14 #define AMGetErrorText  WINELIB_NAME_AW(AMGetErrorText)
15
16 #ifdef __cplusplus
17 } /* extern "C" */
18 #endif /* __cplusplus */
19
20 #endif  /* WINE_DSHOW_ERRORS_H */