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
b3086a75
Commit
b3086a75
authored
Apr 25, 2001
by
Patrik Stridvall
Committed by
Alexandre Julliard
Apr 25, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some issues found by winapi_check.
parent
46401a2a
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
48 additions
and
20 deletions
+48
-20
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+2
-2
storage32.c
dlls/ole32/storage32.c
+3
-0
virtcopy.c
dlls/setupapi/virtcopy.c
+27
-6
wintrust_main.c
dlls/wintrust/wintrust_main.c
+4
-2
x11ddraw.c
dlls/x11drv/x11ddraw.c
+3
-0
x11drv.spec
dlls/x11drv/x11drv.spec
+1
-1
cursoricon.c
windows/cursoricon.c
+7
-8
syscolor.c
windows/syscolor.c
+1
-1
No files found.
dlls/msvcrt/msvcrt.spec
View file @
b3086a75
...
...
@@ -400,7 +400,7 @@ debug_channels (msvcrt)
@ cdecl _msize(ptr) _msize
@ cdecl _nextafter(double double) _nextafter
@ cdecl _onexit(ptr) _onexit
@
cdecl
_open(str long) _open
@
varargs
_open(str long) _open
@ cdecl _open_osfhandle(long long) _open_osfhandle
@ stub _osver
@ stub _outp #(long long)
...
...
@@ -537,7 +537,7 @@ debug_channels (msvcrt)
@ stub _wmakepath #(wstr wstr wstr wstr wstr)
@ cdecl _wmkdir(wstr) _wmkdir
@ cdecl _wmktemp(wstr) _wmktemp
@
cdecl
_wopen(wstr long) _wopen
@
varargs
_wopen(wstr long) _wopen
@ stub _wperror #(wstr)
@ stub _wpgmptr
@ stub _wpopen #(wstr wstr)
...
...
dlls/ole32/storage32.c
View file @
b3086a75
...
...
@@ -6975,6 +6975,9 @@ HRESULT WINAPI OleConvertIStorageToOLESTREAM (
return
hRes
;
}
/***********************************************************************
* GetConvertStg (OLE32.68)
*/
HRESULT
WINAPI
GetConvertStg
(
LPGUID
guid
)
{
FIXME
(
"(%s), unimplemented stub!
\n
"
,
debugstr_guid
(
guid
));
return
E_FAIL
;
...
...
dlls/setupapi/virtcopy.c
View file @
b3086a75
...
...
@@ -52,6 +52,9 @@ static VHSTR vhstr_alloc = 0;
#define VALID_VHSTR(x) ((x < vhstr_alloc) && (vhstrlist[x]) && (vhstrlist[x]->refcount))
/***********************************************************************
* vsmStringAdd (SETUPX.207)
*/
VHSTR
WINAPI
vsmStringAdd16
(
LPCSTR
lpszName
)
{
VHSTR
n
;
...
...
@@ -100,6 +103,9 @@ VHSTR WINAPI vsmStringAdd16(LPCSTR lpszName)
return
index
;
}
/***********************************************************************
* vsmStringDelete (SETUPX.206)
*/
INT16
WINAPI
vsmStringDelete16
(
VHSTR
vhstr
)
{
if
(
VALID_VHSTR
(
vhstr
))
...
...
@@ -129,8 +135,8 @@ VHSTR WINAPI vsmStringFind16(LPCSTR lpszName)
return
0xffff
;
}
/*
*
vsmGetStringName(
)
/*
**********************************************************************
*
vsmGetStringName (SETUPX.205
)
*
* Pretty correct, I guess
*/
...
...
@@ -149,8 +155,8 @@ INT16 WINAPI vsmGetStringName16(VHSTR vhstr, LPSTR lpszBuffer, int cbBuffer)
return
VCPN_FAIL
;
}
/*
*
vsmStringCompare() - not exported from a standard SETUPX.DLL, it seems
/*
**********************************************************************
*
vsmStringCompare (not exported from a standard SETUPX.DLL, it seems)
*/
INT16
WINAPI
vsmStringCompare16
(
VHSTR
vhstrA
,
VHSTR
vhstrB
)
{
...
...
@@ -159,6 +165,9 @@ INT16 WINAPI vsmStringCompare16(VHSTR vhstrA, VHSTR vhstrB)
return
strcmp
(
vhstrlist
[
vhstrA
]
->
pStr
,
vhstrlist
[
vhstrB
]
->
pStr
);
}
/***********************************************************************
* vsmGetStringRawName (SETUPX.208)
*/
LPCSTR
WINAPI
vsmGetStringRawName16
(
VHSTR
vhstr
)
{
return
(
VALID_VHSTR
(
vhstr
))
?
vhstrlist
[
vhstr
]
->
pStr
:
NULL
;
...
...
@@ -233,7 +242,7 @@ BOOL VCP_VirtnodeDelete(LPVIRTNODE lpvnDel)
}
/***********************************************************************
* VcpOpen
* VcpOpen
(SETUPX.200)
*
* Sets up a virtual copy operation.
* This means that functions such as GenInstall()
...
...
@@ -350,6 +359,9 @@ RETERR16 WINAPI VcpQueueRename16(
0
);
}
/***********************************************************************
* VcpEnumFiles (SETUPX.@)
*/
INT16
WINAPI
VcpEnumFiles
(
VCPENUMPROC
vep
,
LPARAM
lParamRef
)
{
WORD
n
;
...
...
@@ -360,6 +372,9 @@ INT16 WINAPI VcpEnumFiles(VCPENUMPROC vep, LPARAM lParamRef)
return
0
;
/* FIXME: return value ? */
}
/***********************************************************************
* VcpExplain (SETUPX.?)
*/
LPCSTR
WINAPI
VcpExplain16
(
LPVIRTNODE
lpVn
,
DWORD
dwWhat
)
{
static
char
buffer
[
MAX_PATH
];
/* FIXME: is this how it's done ? */
...
...
@@ -450,7 +465,7 @@ RETERR16 VcpFlush16(WORD fl, LPCSTR lpszBackupDest)
}
/***********************************************************************
* VcpClose
* VcpClose
(SETUPX.201)
*
* Does callbacks (-> vifproc) with VCPM_VSTATCLOSESTART,
* VCPM_VSTATCLOSEEND.
...
...
@@ -514,6 +529,9 @@ RETERR16 VCP_RenameFiles(void)
return
res
;
}
/***********************************************************************
* vcpDefCallbackProc (SETUPX.202)
*/
RETERR16
WINAPI
vcpDefCallbackProc16
(
LPVOID
lpvObj
,
UINT16
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
,
LPARAM
lParamRef
)
{
...
...
@@ -655,6 +673,9 @@ RETERR16 VCP_UI_CopyStart(void)
return
VCPN_OK
;
}
/***********************************************************************
* vcpUICallbackProc (SETUPX.213)
*/
RETERR16
WINAPI
vcpUICallbackProc16
(
LPVOID
lpvObj
,
UINT16
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
,
LPARAM
lParamRef
)
{
...
...
dlls/wintrust/wintrust_main.c
View file @
b3086a75
...
...
@@ -8,8 +8,10 @@
DEFAULT_DEBUG_CHANNEL
(
win32
);
LONG
WinVerifyTrust
(
HWND
hwnd
,
GUID
*
ActionID
,
LPVOID
ActionData
)
/***********************************************************************
* WinVerifyTrust (WINTRUST.@)
*/
LONG
WINAPI
WinVerifyTrust
(
HWND
hwnd
,
GUID
*
ActionID
,
LPVOID
ActionData
)
{
FIXME
(
"(hwnd 0x%04x ActionId %p ActionData %p): stub (nothing will be verified)
\n
"
,
hwnd
,
ActionID
,
ActionData
);
...
...
dlls/x11drv/x11ddraw.c
View file @
b3086a75
...
...
@@ -4,7 +4,10 @@
* Copyright 2001 TransGaming Technologies, Inc.
*/
#include "config.h"
#include <string.h>
#include "ts_xlib.h"
#include "x11drv.h"
#include "x11ddraw.h"
...
...
dlls/x11drv/x11drv.spec
View file @
b3086a75
...
...
@@ -37,7 +37,7 @@ debug_channels (bitblt bitmap clipboard cursor dinput event font gdi graphics
@ cdecl SetFocus(long) X11DRV_SetFocus
@ cdecl SetParent(long long) X11DRV_SetParent
@ cdecl SetWindowPos(ptr) X11DRV_SetWindowPos
@ cdecl SetWindowRgn(long long) X11DRV_SetWindowRgn
@ cdecl SetWindowRgn(long long
long
) X11DRV_SetWindowRgn
@ cdecl SetWindowIcon(long long long) X11DRV_SetWindowIcon
@ cdecl SetWindowText(long wstr) X11DRV_SetWindowText
@ cdecl IsSingleWindow() X11DRV_IsSingleWindow
...
...
windows/cursoricon.c
View file @
b3086a75
...
...
@@ -1161,14 +1161,13 @@ HICON16 WINAPI CreateIcon16( HINSTANCE16 hInstance, INT16 nWidth,
* also be done in CreateIconIndirect...
*/
HICON
WINAPI
CreateIcon
(
HINSTANCE
hInstance
,
/* the application's hInstance, currently unused */
INT
nWidth
,
/* the width of the provided bitmaps */
INT
nHeight
,
/* the height of the provided bitmaps */
BYTE
bPlanes
,
/* the number of planes in the provided bitmaps */
BYTE
bBitsPixel
,
/* the number of bits per pixel of the lpXORbits bitmap */
LPCVOID
lpANDbits
,
/* a monochrome bitmap representing the icon's mask */
LPCVOID
lpXORbits
/* the icon's 'color' bitmap */
)
HINSTANCE
hInstance
,
/* [in] the application's hInstance, currently unused */
INT
nWidth
,
/* [in] the width of the provided bitmaps */
INT
nHeight
,
/* [in] the height of the provided bitmaps */
BYTE
bPlanes
,
/* [in] the number of planes in the provided bitmaps */
BYTE
bBitsPixel
,
/* [in] the number of bits per pixel of the lpXORbits bitmap */
LPCVOID
lpANDbits
,
/* [in] a monochrome bitmap representing the icon's mask */
LPCVOID
lpXORbits
)
/* [in] the icon's 'color' bitmap */
{
HICON
hIcon
;
HDC
hdc
;
...
...
windows/syscolor.c
View file @
b3086a75
...
...
@@ -277,7 +277,7 @@ BOOL WINAPI SetSysColors( INT nChanges, const INT *lpSysColor,
}
/*************************************************************************
* SetSysColors (USER32.@)
* SetSysColors
Temp
(USER32.@)
*/
BOOL
WINAPI
SetSysColorsTemp
(
int
n
,
const
int
*
p
,
const
COLORREF
*
ptr
)
{
...
...
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