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
f89d4a86
Commit
f89d4a86
authored
Mar 23, 2002
by
Patrik Stridvall
Committed by
Alexandre Julliard
Mar 23, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some issues found by winapi_check.
parent
6db8abaf
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
13 deletions
+15
-13
avicap32_main.c
dlls/avicap32/avicap32_main.c
+4
-4
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+2
-2
internet.c
dlls/wininet/internet.c
+4
-4
smb.c
files/smb.c
+4
-2
smb.h
files/smb.h
+1
-1
No files found.
dlls/avicap32/avicap32_main.c
View file @
f89d4a86
...
...
@@ -30,7 +30,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(avicap32);
/***********************************************************************
*
* capCreateCaptureWindowA (AVICAP.@)
* capCreateCaptureWindowA (AVICAP
32
.@)
*
*/
HWND
WINAPI
capCreateCaptureWindowA
(
LPCSTR
pszTitle
,
DWORD
dwStyle
,
int
x
,
int
y
,
int
width
,
int
height
,
HWND
hwndParent
,
int
nID
)
...
...
@@ -42,7 +42,7 @@ HWND WINAPI capCreateCaptureWindowA( LPCSTR pszTitle, DWORD dwStyle, int x, int
/***********************************************************************
*
* capCreateCaptureWindowW (AVICAP.@)
* capCreateCaptureWindowW (AVICAP
32
.@)
*
*/
HWND
WINAPI
capCreateCaptureWindowW
(
LPCWSTR
pwszTitle
,
DWORD
dwStyle
,
int
x
,
int
y
,
int
width
,
int
height
,
HWND
hwndParent
,
int
nID
)
...
...
@@ -54,7 +54,7 @@ HWND WINAPI capCreateCaptureWindowW( LPCWSTR pwszTitle, DWORD dwStyle, int x, in
/***********************************************************************
*
* capGetDriverDescriptionA (AVICAP.@)
* capGetDriverDescriptionA (AVICAP
32
.@)
*
*/
BOOL
WINAPI
capGetDriverDescriptionA
(
UINT
uDriverIndex
,
LPSTR
pszName
,
int
cbName
,
LPSTR
pszVersion
,
int
cbVersion
)
...
...
@@ -66,7 +66,7 @@ BOOL WINAPI capGetDriverDescriptionA( UINT uDriverIndex, LPSTR pszName, int cbNa
/***********************************************************************
*
* capGetDriverDescriptionW (AVICAP.@)
* capGetDriverDescriptionW (AVICAP
32
.@)
*
*/
BOOL
WINAPI
capGetDriverDescriptionW
(
UINT
uDriverIndex
,
LPWSTR
pwszName
,
int
cbName
,
LPWSTR
pwszVersion
,
int
cbVersion
)
...
...
dlls/shlwapi/shlwapi.spec
View file @
f89d4a86
...
...
@@ -708,8 +708,8 @@ debug_channels (shell)
@ stdcall PathIsNetworkPathW(wstr) PathIsNetworkPathW
@ stdcall PathIsLFNFileSpecA(str) PathIsLFNFileSpecA
@ stdcall PathIsLFNFileSpecW(wstr) PathIsLFNFileSpecW
@ stdcall PathFindSuffixArrayA(str) PathFindSuffixArrayA
@ stdcall PathFindSuffixArrayW(wstr) PathFindSuffixArrayW
@ stdcall PathFindSuffixArrayA(str
ptr long
) PathFindSuffixArrayA
@ stdcall PathFindSuffixArrayW(wstr
ptr long
) PathFindSuffixArrayW
@ stdcall _SHGetInstanceExplorer@4(ptr) _SHGetInstanceExplorer
@ stdcall PathUndecorateA(str) PathUndecorateA
@ stdcall PathUndecorateW(wstr) PathUndecorateW
...
...
dlls/wininet/internet.c
View file @
f89d4a86
...
...
@@ -965,7 +965,7 @@ BOOL WINAPI InternetQueryOptionA(HINTERNET hInternet, DWORD dwOption,
/***********************************************************************
* Internet
Query
OptionW (WININET.@)
* Internet
Set
OptionW (WININET.@)
*
* Sets an options on the specified handle
*
...
...
@@ -974,7 +974,7 @@ BOOL WINAPI InternetQueryOptionA(HINTERNET hInternet, DWORD dwOption,
* FALSE on failure
*
*/
BOOLAPI
InternetSetOptionW
(
HINTERNET
hInternet
,
DWORD
dwOption
,
BOOL
WIN
API
InternetSetOptionW
(
HINTERNET
hInternet
,
DWORD
dwOption
,
LPVOID
lpBuffer
,
DWORD
dwBufferLength
)
{
LPWININETHANDLEHEADER
lpwhh
;
...
...
@@ -1003,7 +1003,7 @@ BOOLAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption,
/***********************************************************************
* Internet
Query
OptionA (WININET.@)
* Internet
Set
OptionA (WININET.@)
*
* Sets an options on the specified handle.
*
...
...
@@ -1012,7 +1012,7 @@ BOOLAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption,
* FALSE on failure
*
*/
BOOLAPI
InternetSetOptionA
(
HINTERNET
hInternet
,
DWORD
dwOption
,
BOOL
WIN
API
InternetSetOptionA
(
HINTERNET
hInternet
,
DWORD
dwOption
,
LPVOID
lpBuffer
,
DWORD
dwBufferLength
)
{
/* FIXME!!! implement if lpBuffer is a string, dwBufferLength is
...
...
files/smb.c
View file @
f89d4a86
...
...
@@ -51,7 +51,9 @@
#include <time.h>
#include <unistd.h>
#include <utime.h>
#include <sys/socket.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#include <sys/types.h>
#ifdef HAVE_NETINET_IN_SYSTM_H
#include <netinet/in_systm.h>
...
...
@@ -1030,7 +1032,7 @@ static BOOL SMB_SetOffset(HANDLE hFile, DWORD offset)
return
!
r
;
}
WINAPI
BOOL
SMB_ReadFile
(
HANDLE
hFile
,
LPVOID
buffer
,
DWORD
bytesToRead
,
LPDWORD
bytesRead
,
LPOVERLAPPED
lpOverlapped
)
BOOL
WINAPI
SMB_ReadFile
(
HANDLE
hFile
,
LPVOID
buffer
,
DWORD
bytesToRead
,
LPDWORD
bytesRead
,
LPOVERLAPPED
lpOverlapped
)
{
int
fd
;
DWORD
total
,
count
,
offset
;
...
...
files/smb.h
View file @
f89d4a86
...
...
@@ -91,7 +91,7 @@
#define SMB_COM_CLOSE_PRINT_FILE 0xC2
#define SMB_COM_GET_PRINT_QUEUE 0xC3
extern
WINAPI
BOOL
SMB_ReadFile
(
HANDLE
hFile
,
LPVOID
buffer
,
DWORD
bytesToRead
,
LPDWORD
bytesRead
,
LPOVERLAPPED
lpOverlapped
);
extern
BOOL
WINAPI
SMB_ReadFile
(
HANDLE
hFile
,
LPVOID
buffer
,
DWORD
bytesToRead
,
LPDWORD
bytesRead
,
LPOVERLAPPED
lpOverlapped
);
extern
HANDLE
WINAPI
SMB_CreateFileA
(
LPCSTR
filename
,
DWORD
access
,
DWORD
sharing
,
LPSECURITY_ATTRIBUTES
sa
,
DWORD
creation
,
DWORD
attributes
,
HANDLE
template
);
...
...
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