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
ff698220
Commit
ff698220
authored
Oct 30, 2015
by
Piotr Caban
Committed by
Alexandre Julliard
Nov 01, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Fix CreateSymbolicLink and TryAcquireSRWLockExclusive prototypes.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b321834d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
path.c
dlls/kernel32/path.c
+2
-2
winbase.h
include/winbase.h
+4
-4
No files found.
dlls/kernel32/path.c
View file @
ff698220
...
...
@@ -1996,7 +1996,7 @@ WCHAR * CDECL wine_get_dos_file_name( LPCSTR str )
/*************************************************************************
* CreateSymbolicLinkW (KERNEL32.@)
*/
BOOL
WINAPI
CreateSymbolicLinkW
(
LPCWSTR
link
,
LPCWSTR
target
,
DWORD
flags
)
BOOL
EAN
WINAPI
CreateSymbolicLinkW
(
LPCWSTR
link
,
LPCWSTR
target
,
DWORD
flags
)
{
FIXME
(
"(%s %s %d): stub
\n
"
,
debugstr_w
(
link
),
debugstr_w
(
target
),
flags
);
return
TRUE
;
...
...
@@ -2005,7 +2005,7 @@ BOOL WINAPI CreateSymbolicLinkW(LPCWSTR link, LPCWSTR target, DWORD flags)
/*************************************************************************
* CreateSymbolicLinkA (KERNEL32.@)
*/
BOOL
WINAPI
CreateSymbolicLinkA
(
LPCSTR
link
,
LPCSTR
target
,
DWORD
flags
)
BOOL
EAN
WINAPI
CreateSymbolicLinkA
(
LPCSTR
link
,
LPCSTR
target
,
DWORD
flags
)
{
FIXME
(
"(%s %s %d): stub
\n
"
,
debugstr_a
(
link
),
debugstr_a
(
target
),
flags
);
return
TRUE
;
...
...
include/winbase.h
View file @
ff698220
...
...
@@ -1790,8 +1790,8 @@ WINBASEAPI HANDLE WINAPI CreateSemaphoreW(LPSECURITY_ATTRIBUTES,LONG,LONG,L
WINBASEAPI
HANDLE
WINAPI
CreateSemaphoreExA
(
SECURITY_ATTRIBUTES
*
,
LONG
,
LONG
,
LPCSTR
,
DWORD
,
DWORD
);
WINBASEAPI
HANDLE
WINAPI
CreateSemaphoreExW
(
SECURITY_ATTRIBUTES
*
,
LONG
,
LONG
,
LPCWSTR
,
DWORD
,
DWORD
);
#define CreateSemaphoreEx WINELIB_NAME_AW(CreateSemaphoreEx)
WINBASEAPI
BOOL
WINAPI
CreateSymbolicLinkA
(
LPCSTR
,
LPCSTR
,
DWORD
);
WINBASEAPI
BOOL
WINAPI
CreateSymbolicLinkW
(
LPCWSTR
,
LPCWSTR
,
DWORD
);
WINBASEAPI
BOOL
EAN
WINAPI
CreateSymbolicLinkA
(
LPCSTR
,
LPCSTR
,
DWORD
);
WINBASEAPI
BOOL
EAN
WINAPI
CreateSymbolicLinkW
(
LPCWSTR
,
LPCWSTR
,
DWORD
);
#define CreateSymbolicLink WINELIB_NAME_AW(CreateSymbolicLink)
WINBASEAPI
BOOL
WINAPI
CreateHardLinkA
(
LPCSTR
,
LPCSTR
,
LPSECURITY_ATTRIBUTES
);
WINBASEAPI
BOOL
WINAPI
CreateHardLinkW
(
LPCWSTR
,
LPCWSTR
,
LPSECURITY_ATTRIBUTES
);
...
...
@@ -2542,8 +2542,8 @@ WINBASEAPI LPVOID WINAPI TlsGetValue(DWORD);
WINBASEAPI
BOOL
WINAPI
TlsSetValue
(
DWORD
,
LPVOID
);
WINBASEAPI
BOOL
WINAPI
TransactNamedPipe
(
HANDLE
,
LPVOID
,
DWORD
,
LPVOID
,
DWORD
,
LPDWORD
,
LPOVERLAPPED
);
WINBASEAPI
BOOL
WINAPI
TransmitCommChar
(
HANDLE
,
CHAR
);
WINBASEAPI
BOOL
WINAPI
TryAcquireSRWLockExclusive
(
PSRWLOCK
);
WINBASEAPI
BOOL
WINAPI
TryAcquireSRWLockShared
(
PSRWLOCK
);
WINBASEAPI
BOOL
EAN
WINAPI
TryAcquireSRWLockExclusive
(
PSRWLOCK
);
WINBASEAPI
BOOL
EAN
WINAPI
TryAcquireSRWLockShared
(
PSRWLOCK
);
WINBASEAPI
BOOL
WINAPI
TryEnterCriticalSection
(
CRITICAL_SECTION
*
lpCrit
);
WINBASEAPI
BOOL
WINAPI
TzSpecificLocalTimeToSystemTime
(
const
TIME_ZONE_INFORMATION
*
,
const
SYSTEMTIME
*
,
LPSYSTEMTIME
);
WINBASEAPI
LONG
WINAPI
UnhandledExceptionFilter
(
PEXCEPTION_POINTERS
);
...
...
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