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
8f9b09e9
Commit
8f9b09e9
authored
Feb 27, 2004
by
Patrik Stridvall
Committed by
Alexandre Julliard
Feb 27, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some issues found by winapi_check.
parent
4f6a1d34
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
21 additions
and
27 deletions
+21
-27
imm.c
dlls/imm32/imm.c
+1
-1
kernel32.spec
dlls/kernel/kernel32.spec
+1
-1
module.c
dlls/kernel/module.c
+1
-3
wksta.c
dlls/netapi32/wksta.c
+8
-0
safearray.c
dlls/oleaut32/safearray.c
+1
-3
varformat.c
dlls/oleaut32/varformat.c
+2
-6
variant.c
dlls/oleaut32/variant.c
+2
-6
rasapi32.spec
dlls/rasapi32/rasapi32.spec
+1
-1
wineps.spec
dlls/wineps/wineps.spec
+1
-1
netconnection.c
dlls/wininet/netconnection.c
+1
-3
x11drv.spec
dlls/x11drv/x11drv.spec
+1
-1
xim.c
dlls/x11drv/xim.c
+1
-1
No files found.
dlls/imm32/imm.c
View file @
8f9b09e9
...
@@ -34,7 +34,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(imm);
...
@@ -34,7 +34,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(imm);
#define FROM_IME 0xcafe1337
#define FROM_IME 0xcafe1337
static
void
(
WINAPI
*
pX11DRV_ForceXIMReset
)(
HWND
);
static
void
(
*
pX11DRV_ForceXIMReset
)(
HWND
);
typedef
struct
tagInputContextData
typedef
struct
tagInputContextData
{
{
...
...
dlls/kernel/kernel32.spec
View file @
8f9b09e9
...
@@ -1079,7 +1079,7 @@
...
@@ -1079,7 +1079,7 @@
@ stdcall FindActCtxSectionGuid(long ptr long ptr ptr)
@ stdcall FindActCtxSectionGuid(long ptr long ptr ptr)
@ stdcall FindActCtxSectionStringA(long ptr long str ptr)
@ stdcall FindActCtxSectionStringA(long ptr long str ptr)
@ stdcall FindActCtxSectionStringW(long ptr long wstr ptr)
@ stdcall FindActCtxSectionStringW(long ptr long wstr ptr)
@ stdcall GetCurrentActCtx()
@ stdcall GetCurrentActCtx(
ptr
)
@ stdcall QueryActCtxW(long ptr ptr long ptr long ptr)
@ stdcall QueryActCtxW(long ptr ptr long ptr long ptr)
@ stdcall ReleaseActCtx(ptr)
@ stdcall ReleaseActCtx(ptr)
@ stdcall ZombifyActCtx(ptr)
@ stdcall ZombifyActCtx(ptr)
...
...
dlls/kernel/module.c
View file @
8f9b09e9
...
@@ -25,9 +25,7 @@
...
@@ -25,9 +25,7 @@
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
# include <sys/types.h>
#endif
#ifdef HAVE_UNISTD_H
#ifdef HAVE_UNISTD_H
# include <unistd.h>
# include <unistd.h>
#endif
#endif
...
...
dlls/netapi32/wksta.c
View file @
8f9b09e9
...
@@ -136,6 +136,10 @@ static void wprint_name(WCHAR *buffer, int len, ULONG transport,
...
@@ -136,6 +136,10 @@ static void wprint_name(WCHAR *buffer, int len, ULONG transport,
*
ptr1
=
*
ptr2
;
*
ptr1
=
*
ptr2
;
*
ptr1
=
'\0'
;
*
ptr1
=
'\0'
;
}
}
/***********************************************************************
* NetWkstaTransportEnum (NETAPI32.@)
*/
struct
WkstaTransportEnumData
struct
WkstaTransportEnumData
{
{
...
@@ -146,6 +150,8 @@ struct WkstaTransportEnumData
...
@@ -146,6 +150,8 @@ struct WkstaTransportEnumData
NET_API_STATUS
ret
;
NET_API_STATUS
ret
;
};
};
/**********************************************************************/
static
BOOL
WkstaEnumAdaptersCallback
(
UCHAR
totalLANAs
,
UCHAR
lanaIndex
,
static
BOOL
WkstaEnumAdaptersCallback
(
UCHAR
totalLANAs
,
UCHAR
lanaIndex
,
ULONG
transport
,
const
NetBIOSAdapterImpl
*
data
,
void
*
closure
)
ULONG
transport
,
const
NetBIOSAdapterImpl
*
data
,
void
*
closure
)
{
{
...
@@ -237,6 +243,8 @@ static BOOL WkstaEnumAdaptersCallback(UCHAR totalLANAs, UCHAR lanaIndex,
...
@@ -237,6 +243,8 @@ static BOOL WkstaEnumAdaptersCallback(UCHAR totalLANAs, UCHAR lanaIndex,
return
ret
;
return
ret
;
}
}
/**********************************************************************/
NET_API_STATUS
WINAPI
NET_API_STATUS
WINAPI
NetWkstaTransportEnum
(
LPWSTR
ServerName
,
DWORD
level
,
PBYTE
*
pbuf
,
NetWkstaTransportEnum
(
LPWSTR
ServerName
,
DWORD
level
,
PBYTE
*
pbuf
,
DWORD
prefmaxlen
,
LPDWORD
read_entries
,
DWORD
prefmaxlen
,
LPDWORD
read_entries
,
...
...
dlls/oleaut32/safearray.c
View file @
8f9b09e9
...
@@ -33,9 +33,7 @@
...
@@ -33,9 +33,7 @@
#include "config.h"
#include "config.h"
#ifdef HAVE_STRING_H
#include <string.h>
# include <string.h>
#endif
#include <stdarg.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdio.h>
#include "windef.h"
#include "windef.h"
...
...
dlls/oleaut32/varformat.c
View file @
8f9b09e9
...
@@ -26,12 +26,8 @@
...
@@ -26,12 +26,8 @@
#include "config.h"
#include "config.h"
#ifdef HAVE_STRING_H
#include <string.h>
# include <string.h>
#include <stdlib.h>
#endif
#ifdef HAVE_STDLIB_H
# include <stdlib.h>
#endif
#include <stdarg.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdio.h>
...
...
dlls/oleaut32/variant.c
View file @
8f9b09e9
...
@@ -24,12 +24,8 @@
...
@@ -24,12 +24,8 @@
#include "config.h"
#include "config.h"
#ifdef HAVE_STRING_H
#include <string.h>
# include <string.h>
#include <stdlib.h>
#endif
#ifdef HAVE_STDLIB_H
# include <stdlib.h>
#endif
#include <stdarg.h>
#include <stdarg.h>
#define NONAMELESSUNION
#define NONAMELESSUNION
...
...
dlls/rasapi32/rasapi32.spec
View file @
8f9b09e9
...
@@ -72,7 +72,7 @@
...
@@ -72,7 +72,7 @@
@ stub RasSetSubEntryPropertiesA
@ stub RasSetSubEntryPropertiesA
@ stub RasSetSubEntryPropertiesW
@ stub RasSetSubEntryPropertiesW
@ stdcall RasValidateEntryNameA(str str)
@ stdcall RasValidateEntryNameA(str str)
@ st
ub RasValidateEntryNameW
@ st
dcall RasValidateEntryNameW(wstr wstr)
500 stub RnaEngineRequest
500 stub RnaEngineRequest
501 stub DialEngineRequest
501 stub DialEngineRequest
...
...
dlls/wineps/wineps.spec
View file @
8f9b09e9
...
@@ -32,7 +32,7 @@
...
@@ -32,7 +32,7 @@
@ cdecl SelectFont(ptr long) PSDRV_SelectFont
@ cdecl SelectFont(ptr long) PSDRV_SelectFont
@ cdecl SelectPen(ptr long) PSDRV_SelectPen
@ cdecl SelectPen(ptr long) PSDRV_SelectPen
@ cdecl SetBkColor(ptr long) PSDRV_SetBkColor
@ cdecl SetBkColor(ptr long) PSDRV_SetBkColor
@ cdecl SetDeviceClipping(ptr long) PSDRV_SetDeviceClipping
@ cdecl SetDeviceClipping(ptr long
long
) PSDRV_SetDeviceClipping
@ cdecl SetPixel(ptr long long long) PSDRV_SetPixel
@ cdecl SetPixel(ptr long long long) PSDRV_SetPixel
@ cdecl SetTextColor(ptr long) PSDRV_SetTextColor
@ cdecl SetTextColor(ptr long) PSDRV_SetTextColor
@ cdecl StartDoc(ptr ptr) PSDRV_StartDoc
@ cdecl StartDoc(ptr ptr) PSDRV_StartDoc
...
...
dlls/wininet/netconnection.c
View file @
8f9b09e9
...
@@ -26,9 +26,7 @@
...
@@ -26,9 +26,7 @@
#ifdef HAVE_SYS_TIME_H
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
# include <sys/time.h>
#endif
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
# include <sys/types.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
# include <sys/socket.h>
#endif
#endif
...
...
dlls/x11drv/x11drv.spec
View file @
8f9b09e9
...
@@ -52,7 +52,7 @@
...
@@ -52,7 +52,7 @@
@ cdecl SetDIBColorTable(ptr long long ptr) X11DRV_SetDIBColorTable
@ cdecl SetDIBColorTable(ptr long long ptr) X11DRV_SetDIBColorTable
@ cdecl SetDIBits(ptr long long long ptr ptr long) X11DRV_SetDIBits
@ cdecl SetDIBits(ptr long long long ptr ptr long) X11DRV_SetDIBits
@ cdecl SetDIBitsToDevice(ptr long long long long long long long long ptr ptr long) X11DRV_SetDIBitsToDevice
@ cdecl SetDIBitsToDevice(ptr long long long long long long long long ptr ptr long) X11DRV_SetDIBitsToDevice
@ cdecl SetDeviceClipping(ptr long) X11DRV_SetDeviceClipping
@ cdecl SetDeviceClipping(ptr long
long
) X11DRV_SetDeviceClipping
@ cdecl SetDeviceGammaRamp(ptr ptr) X11DRV_SetDeviceGammaRamp
@ cdecl SetDeviceGammaRamp(ptr ptr) X11DRV_SetDeviceGammaRamp
@ cdecl SetPixel(ptr long long long) X11DRV_SetPixel
@ cdecl SetPixel(ptr long long long) X11DRV_SetPixel
@ cdecl SetPixelFormat(ptr long ptr) X11DRV_SetPixelFormat
@ cdecl SetPixelFormat(ptr long ptr) X11DRV_SetPixelFormat
...
...
dlls/x11drv/xim.c
View file @
8f9b09e9
...
@@ -314,7 +314,7 @@ static void XIMPreEditCaretCallback(XIC ic, XPointer client_data,
...
@@ -314,7 +314,7 @@ static void XIMPreEditCaretCallback(XIC ic, XPointer client_data,
FIXME
(
"PreeditCaretCalback %p
\n
"
,
ic
);
FIXME
(
"PreeditCaretCalback %p
\n
"
,
ic
);
}
}
void
WINAPI
X11DRV_ForceXIMReset
(
HWND
hwnd
)
void
X11DRV_ForceXIMReset
(
HWND
hwnd
)
{
{
XIC
ic
=
X11DRV_get_ic
(
hwnd
);
XIC
ic
=
X11DRV_get_ic
(
hwnd
);
if
(
ic
)
if
(
ic
)
...
...
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