Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
b0418622
Commit
b0418622
authored
Apr 14, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Apr 16, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Make function definitions and declarations agree.
parent
9f6a6427
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
network.c
dlls/user32/network.c
+2
-2
winnet16.h
include/wine/winnet16.h
+1
-1
winuser16.h
include/wine/winuser16.h
+1
-1
No files found.
dlls/user32/network.c
View file @
b0418622
...
...
@@ -162,8 +162,8 @@ WORD WINAPI WNetUnlockQueueData16( LPSTR szQueue )
* Redirects a local device (either a disk drive or printer port)
* to a shared device on a remote server.
*/
WORD
WINAPI
WNetAddConnection16
(
LP
STR
lpNetPath
,
LP
STR
lpPassWord
,
LPSTR
lpLocalName
)
WORD
WINAPI
WNetAddConnection16
(
LP
CSTR
lpNetPath
,
LPC
STR
lpPassWord
,
LP
C
STR
lpLocalName
)
{
FIXME
(
"(%s, %p, %s): stub
\n
"
,
debugstr_a
(
lpNetPath
),
lpPassWord
,
debugstr_a
(
lpLocalName
)
);
...
...
include/wine/winnet16.h
View file @
b0418622
...
...
@@ -105,7 +105,7 @@ WORD WINAPI WNetUnlockQueueData16(LPSTR);
* Connections
*/
WORD
WINAPI
WNetAddConnection16
(
LP
STR
,
LPSTR
,
LP
STR
);
WORD
WINAPI
WNetAddConnection16
(
LP
CSTR
,
LPCSTR
,
LPC
STR
);
WORD
WINAPI
WNetCancelConnection16
(
LPSTR
,
BOOL16
);
WORD
WINAPI
WNetGetConnection16
(
LPSTR
,
LPSTR
,
UINT16
*
);
WORD
WINAPI
WNetRestoreConnection16
(
HWND16
,
LPSTR
);
...
...
include/wine/winuser16.h
View file @
b0418622
...
...
@@ -948,7 +948,7 @@ VOID WINAPI ValidateRgn16(HWND16,HRGN16);
HWND16
WINAPI
WindowFromDC16
(
HDC16
);
HWND16
WINAPI
WindowFromPoint16
(
POINT16
);
BOOL16
WINAPI
WinHelp16
(
HWND16
,
LPCSTR
,
UINT16
,
DWORD
);
UINT16
WINAPI
WNetAddConnection16
(
LPCSTR
,
LPCSTR
,
LPCSTR
);
WORD
WINAPI
WNetAddConnection16
(
LPCSTR
,
LPCSTR
,
LPCSTR
);
INT16
WINAPI
wvsprintf16
(
LPSTR
,
LPCSTR
,
VA_LIST16
);
BOOL16
WINAPI
DrawState16A
(
HDC16
,
HBRUSH16
,
DRAWSTATEPROC16
,
LPARAM
,
WPARAM16
,
INT16
,
INT16
,
INT16
,
INT16
,
UINT16
);
BOOL16
WINAPI
IsDialogMessage16
(
HWND16
,
MSG16
*
);
...
...
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