Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
65f44365
Commit
65f44365
authored
22 years ago
by
Patrik Stridvall
Committed by
Alexandre Julliard
22 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fixed some issues found by winapi_check.
parent
bd68e068
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/urlmon/umon.c
+2
-2
2 additions, 2 deletions
dlls/urlmon/umon.c
graphics/x11drv/opengl.c
+6
-2
6 additions, 2 deletions
graphics/x11drv/opengl.c
with
8 additions
and
4 deletions
dlls/urlmon/umon.c
+
2
−
2
View file @
65f44365
...
...
@@ -882,7 +882,7 @@ HRESULT WINAPI CoInternetGetSession(DWORD dwSessionMode, /*IInternetSession*/voi
* Determines the Multipurpose Internet Mail Extensions (MIME) type from the data provided.
*
*/
HRESULT
FindMimeFromData
(
LPBC
pBC
,
LPCWSTR
pwzUrl
,
LPVOID
pBuffer
,
HRESULT
WINAPI
FindMimeFromData
(
LPBC
pBC
,
LPCWSTR
pwzUrl
,
LPVOID
pBuffer
,
DWORD
cbSize
,
LPCWSTR
pwzMimeProposed
,
DWORD
dwMimeFlags
,
LPWSTR
*
ppwzMimeOut
,
DWORD
dwReserved
)
{
...
...
@@ -968,7 +968,7 @@ HRESULT WINAPI RevokeBindStatusCallback(
* Releases the resources used by the specified BINDINFO structure
*
*/
void
ReleaseBindInfo
(
BINDINFO
*
pbindinfo
)
void
WINAPI
ReleaseBindInfo
(
BINDINFO
*
pbindinfo
)
{
FIXME
(
"stub
\n
"
);
}
...
...
This diff is collapsed.
Click to expand it.
graphics/x11drv/opengl.c
+
6
−
2
View file @
65f44365
...
...
@@ -38,8 +38,12 @@ WINE_DEFAULT_DEBUG_CHANNEL(opengl);
#undef WINAPI
#define XMD_H
/* This is to prevent the Xmd.h inclusion bug :-/ */
#include
<GL/gl.h>
#include
<GL/glx.h>
#ifdef HAVE_GL_GL_H
# include <GL/gl.h>
#endif
#ifdef HAVE_GL_GLX_H
# include <GL/glx.h>
#endif
#ifdef HAVE_GL_GLEXT_H
# include <GL/glext.h>
#endif
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment