Fixed some issues found by winapi_check.

oldstable
Patrik Stridvall 2002-10-02 01:24:27 +00:00 committed by Alexandre Julliard
parent bd68e06896
commit 65f4436566
2 changed files with 8 additions and 4 deletions

View File

@ -882,7 +882,7 @@ HRESULT WINAPI CoInternetGetSession(DWORD dwSessionMode, /*IInternetSession*/voi
* Determines the Multipurpose Internet Mail Extensions (MIME) type from the data provided. * 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, DWORD cbSize, LPCWSTR pwzMimeProposed, DWORD dwMimeFlags,
LPWSTR* ppwzMimeOut, DWORD dwReserved) LPWSTR* ppwzMimeOut, DWORD dwReserved)
{ {
@ -968,7 +968,7 @@ HRESULT WINAPI RevokeBindStatusCallback(
* Releases the resources used by the specified BINDINFO structure * Releases the resources used by the specified BINDINFO structure
* *
*/ */
void ReleaseBindInfo(BINDINFO* pbindinfo) void WINAPI ReleaseBindInfo(BINDINFO* pbindinfo)
{ {
FIXME("stub\n"); FIXME("stub\n");
} }

View File

@ -38,8 +38,12 @@ WINE_DEFAULT_DEBUG_CHANNEL(opengl);
#undef WINAPI #undef WINAPI
#define XMD_H /* This is to prevent the Xmd.h inclusion bug :-/ */ #define XMD_H /* This is to prevent the Xmd.h inclusion bug :-/ */
#include <GL/gl.h> #ifdef HAVE_GL_GL_H
#include <GL/glx.h> # include <GL/gl.h>
#endif
#ifdef HAVE_GL_GLX_H
# include <GL/glx.h>
#endif
#ifdef HAVE_GL_GLEXT_H #ifdef HAVE_GL_GLEXT_H
# include <GL/glext.h> # include <GL/glext.h>
#endif #endif