mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 16:26:02 +00:00
[KERNEL32]
Implement SetVDMCurrentDirectories. svn path=/branches/ntvdm/; revision=62098
This commit is contained in:
parent
5a678ff4e0
commit
24d5936eb9
1 changed files with 34 additions and 7 deletions
|
@ -1239,17 +1239,44 @@ RegisterWowExec (
|
|||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
BOOL
|
||||
WINAPI
|
||||
SetVDMCurrentDirectories (
|
||||
DWORD Unknown0,
|
||||
DWORD Unknown1
|
||||
)
|
||||
SetVDMCurrentDirectories(DWORD cchCurDirs, PCHAR lpszzCurDirs)
|
||||
{
|
||||
STUB;
|
||||
return FALSE;
|
||||
BASE_API_MESSAGE ApiMessage;
|
||||
PBASE_GETSET_VDM_CURDIRS VDMCurrentDirsRequest = &ApiMessage.Data.VDMCurrentDirsRequest;
|
||||
PCSR_CAPTURE_BUFFER CaptureBuffer;
|
||||
|
||||
/* Allocate the capture buffer */
|
||||
CaptureBuffer = CsrAllocateCaptureBuffer(1, cchCurDirs);
|
||||
if (CaptureBuffer == NULL)
|
||||
{
|
||||
BaseSetLastNTError(STATUS_NO_MEMORY);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/* Setup the input parameters */
|
||||
VDMCurrentDirsRequest->cchCurDirs = cchCurDirs;
|
||||
CsrCaptureMessageBuffer(CaptureBuffer,
|
||||
lpszzCurDirs,
|
||||
cchCurDirs,
|
||||
(PVOID*)&VDMCurrentDirsRequest->lpszzCurDirs);
|
||||
|
||||
/* Call CSRSS */
|
||||
CsrClientCallServer((PCSR_API_MESSAGE)&ApiMessage,
|
||||
CaptureBuffer,
|
||||
CSR_CREATE_API_NUMBER(BASESRV_SERVERDLL_INDEX, BasepGetVDMCurDirs),
|
||||
sizeof(BASE_GETSET_VDM_CURDIRS));
|
||||
|
||||
/* Free the capture buffer */
|
||||
CsrFreeCaptureBuffer(CaptureBuffer);
|
||||
|
||||
/* Set the last error */
|
||||
BaseSetLastNTError(ApiMessage.Status);
|
||||
|
||||
return NT_SUCCESS(ApiMessage.Status) ? TRUE : FALSE;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue