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
044baef5
Commit
044baef5
authored
Mar 24, 2016
by
Austin English
Committed by
Alexandre Julliard
Apr 12, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wimgapi: Add WIMCreateFile stub.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
dc0377aa
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
main.c
dlls/wimgapi/main.c
+7
-0
wimgapi.spec
dlls/wimgapi/wimgapi.spec
+1
-1
No files found.
dlls/wimgapi/main.c
View file @
044baef5
...
...
@@ -58,3 +58,10 @@ BOOL WINAPI WIMGetMountedImages(PWIM_MOUNT_LIST list, DWORD *length)
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
HANDLE
WINAPI
WIMCreateFile
(
WCHAR
*
path
,
DWORD
access
,
DWORD
creation
,
DWORD
flags
,
DWORD
compression
,
DWORD
*
result
)
{
FIXME
(
"(%s %d %d %d %d %p) stub
\n
"
,
debugstr_w
(
path
),
access
,
creation
,
flags
,
compression
,
result
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
NULL
;
}
dlls/wimgapi/wimgapi.spec
View file @
044baef5
...
...
@@ -5,7 +5,7 @@
@ stub WIMCloseHandle
@ stub WIMCommitImageHandle
@ stub WIMCopyFile
@ st
ub WIMCreateFile
@ st
dcall WIMCreateFile(wstr long long long long ptr)
@ stub WIMCreateImageFile
@ stub WIMDeleteImage
@ stub WIMDeleteImageMounts
...
...
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