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
fee6b384
Commit
fee6b384
authored
Jul 22, 2008
by
Cesar Eduardo Barros
Committed by
Alexandre Julliard
Jul 25, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add stub for CreateHardLink.
parent
b4a77bcd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
2 deletions
+28
-2
kernel32.spec
dlls/kernel32/kernel32.spec
+2
-2
path.c
dlls/kernel32/path.c
+26
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
fee6b384
...
...
@@ -224,8 +224,8 @@
@ stdcall CreateFileMappingA(long ptr long long long str)
@ stdcall CreateFileMappingW(long ptr long long long wstr)
@ stdcall CreateFileW(wstr long long ptr long long long)
# @ stub CreateHardLinkA
# @ stub CreateHardLinkW
@ stdcall CreateHardLinkA(str str ptr)
@ stdcall CreateHardLinkW(wstr wstr ptr)
@ stdcall CreateIoCompletionPort(long long long long)
@ stdcall CreateJobObjectA(ptr str)
@ stdcall CreateJobObjectW(ptr wstr)
...
...
dlls/kernel32/path.c
View file @
fee6b384
...
...
@@ -1193,6 +1193,32 @@ BOOL WINAPI MoveFileA( LPCSTR source, LPCSTR dest )
}
/*************************************************************************
* CreateHardLinkW (KERNEL32.@)
*/
BOOL
WINAPI
CreateHardLinkW
(
LPCWSTR
lpFileName
,
LPCWSTR
lpExistingFileName
,
LPSECURITY_ATTRIBUTES
lpSecurityAttributes
)
{
FIXME
(
"(%s, %s, %p): stub
\n
"
,
debugstr_w
(
lpFileName
),
debugstr_w
(
lpExistingFileName
),
lpSecurityAttributes
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/*************************************************************************
* CreateHardLinkA (KERNEL32.@)
*/
BOOL
WINAPI
CreateHardLinkA
(
LPCSTR
lpFileName
,
LPCSTR
lpExistingFileName
,
LPSECURITY_ATTRIBUTES
lpSecurityAttributes
)
{
FIXME
(
"(%s, %s, %p): stub
\n
"
,
debugstr_a
(
lpFileName
),
debugstr_a
(
lpExistingFileName
),
lpSecurityAttributes
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* CreateDirectoryW (KERNEL32.@)
* RETURNS:
...
...
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