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
295f1948
Commit
295f1948
authored
Feb 11, 2015
by
Austin English
Committed by
Alexandre Julliard
Feb 12, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add SetVolumeMountPointA/W stubs.
parent
2d18cf57
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
3 deletions
+23
-3
kernel32.spec
dlls/kernel32/kernel32.spec
+2
-2
volume.c
dlls/kernel32/volume.c
+20
-0
winbase.h
include/winbase.h
+1
-1
No files found.
dlls/kernel32/kernel32.spec
View file @
295f1948
...
...
@@ -1465,8 +1465,8 @@
@ stub SetVDMCurrentDirectories
@ stdcall SetVolumeLabelA(str str)
@ stdcall SetVolumeLabelW(wstr wstr)
@ st
ub SetVolumeMountPointA
@ st
ub SetVolumeMountPointW
@ st
dcall SetVolumeMountPointA(str str)
@ st
dcall SetVolumeMountPointW(wstr wstr)
@ stdcall SetWaitableTimer(long ptr long ptr ptr long)
@ stdcall SetWaitableTimerEx(long ptr long ptr ptr ptr long)
# @ stub SetXStateFeaturesMask
...
...
dlls/kernel32/volume.c
View file @
295f1948
...
...
@@ -2167,3 +2167,23 @@ BOOL WINAPI DeleteVolumeMountPointW(LPCWSTR mountpoint)
FIXME
(
"(%s), stub!
\n
"
,
debugstr_w
(
mountpoint
));
return
FALSE
;
}
/***********************************************************************
* SetVolumeMountPointA (KERNEL32.@)
*/
BOOL
WINAPI
SetVolumeMountPointA
(
LPCSTR
path
,
LPCSTR
volume
)
{
FIXME
(
"(%s, %s), stub!
\n
"
,
debugstr_a
(
path
),
debugstr_a
(
volume
));
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* SetVolumeMountPointW (KERNEL32.@)
*/
BOOL
WINAPI
SetVolumeMountPointW
(
LPCWSTR
path
,
LPCWSTR
volume
)
{
FIXME
(
"(%s, %s), stub!
\n
"
,
debugstr_w
(
path
),
debugstr_w
(
volume
));
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
include/winbase.h
View file @
295f1948
...
...
@@ -2407,7 +2407,7 @@ WINBASEAPI BOOL WINAPI SetVolumeLabelA(LPCSTR,LPCSTR);
WINBASEAPI
BOOL
WINAPI
SetVolumeLabelW
(
LPCWSTR
,
LPCWSTR
);
#define SetVolumeLabel WINELIB_NAME_AW(SetVolumeLabel)
WINBASEAPI
BOOL
WINAPI
SetVolumeMountPointA
(
LPCSTR
,
LPCSTR
);
WINBASEAPI
BOOL
WINAPI
SetVolumeMountPointW
(
LPC
STR
,
LPC
STR
);
WINBASEAPI
BOOL
WINAPI
SetVolumeMountPointW
(
LPC
WSTR
,
LPCW
STR
);
#define SetVolumeMountPoint WINELIB_NAME_AW(SetVolumeMountPoint)
WINBASEAPI
BOOL
WINAPI
SetWaitableTimer
(
HANDLE
,
const
LARGE_INTEGER
*
,
LONG
,
PTIMERAPCROUTINE
,
LPVOID
,
BOOL
);
WINBASEAPI
BOOL
WINAPI
SetWaitableTimerEx
(
HANDLE
,
const
LARGE_INTEGER
*
,
LONG
,
PTIMERAPCROUTINE
,
LPVOID
,
REASON_CONTEXT
*
,
ULONG
);
...
...
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