Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
c0716ef1
Commit
c0716ef1
authored
Sep 01, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 10, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Make errors.h more complete and better match the PSDK types.
parent
b1ed9ce8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
errors.h
include/errors.h
+7
-2
No files found.
include/errors.h
View file @
c0716ef1
...
...
@@ -23,14 +23,19 @@
extern
"C"
{
#endif
#define AMOVIEAPI
#define VFW_FIRST_CODE 0x200
#define MAX_ERROR_TEXT_LEN 160
#include <vfwmsgs.h>
DWORD
WINAPI
AMGetErrorTextA
(
HRESULT
hr
,
char
*
buffer
,
DWORD
maxlen
);
DWORD
WINAPI
AMGetErrorTextW
(
HRESULT
hr
,
WCHAR
*
buffer
,
DWORD
maxlen
);
typedef
BOOL
(
WINAPI
*
AMGETERRORTEXTPROCA
)(
HRESULT
,
char
*
,
DWORD
);
typedef
BOOL
(
WINAPI
*
AMGETERRORTEXTPROCW
)(
HRESULT
,
WCHAR
*
,
DWORD
);
DECL_WINELIB_TYPE_AW
(
AMGETERRORTEXTPROC
)
DWORD
WINAPI
AMGetErrorTextA
(
HRESULT
,
LPSTR
,
DWORD
);
DWORD
WINAPI
AMGetErrorTextW
(
HRESULT
,
LPWSTR
,
DWORD
);
#define AMGetErrorText WINELIB_NAME_AW(AMGetErrorText)
#ifdef __cplusplus
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment