ReactOS
0.4.16-dev-1505-g12fa72a
SetCurrentDirectoryA.cpp
Go to the documentation of this file.
1
//
2
// SetCurrentDirectoryA.cpp
3
//
4
// Copyright (c) Microsoft Corporation. All rights reserved.
5
//
6
// Definition of __acrt_SetCurrentDirectoryA.
7
//
8
9
#include <
corecrt_internal_win32_buffer.h
>
10
11
BOOL
__cdecl
__acrt_SetCurrentDirectoryA
(
12
LPCSTR
const
lpPathName
13
)
14
{
15
__crt_internal_win32_buffer<wchar_t>
wide_path_name;
16
17
errno_t
const
cvt1
=
__acrt_mbs_to_wcs_cp
(
18
lpPathName,
19
wide_path_name,
20
__acrt_get_utf8_acp_compatibility_codepage
()
21
);
22
23
if
(
cvt1
!= 0) {
24
return
FALSE
;
25
}
26
27
return ::SetCurrentDirectoryW(wide_path_name.
data
());
28
}
__acrt_SetCurrentDirectoryA
BOOL __cdecl __acrt_SetCurrentDirectoryA(LPCSTR const lpPathName)
Definition:
SetCurrentDirectoryA.cpp:11
__cdecl
#define __cdecl
Definition:
accygwin.h:79
__crt_win32_buffer
Definition:
corecrt_internal_win32_buffer.h:152
__crt_win32_buffer::data
char_type * data()
Definition:
corecrt_internal_win32_buffer.h:246
corecrt_internal_win32_buffer.h
__acrt_mbs_to_wcs_cp
errno_t __acrt_mbs_to_wcs_cp(char const *const null_terminated_input_string, __crt_win32_buffer< wchar_t, ResizePolicy > &win32_buffer, unsigned int const code_page)
Definition:
corecrt_internal_win32_buffer.h:619
__acrt_get_utf8_acp_compatibility_codepage
unsigned int __acrt_get_utf8_acp_compatibility_codepage()
Definition:
corecrt_internal_win32_buffer.h:422
FALSE
#define FALSE
Definition:
types.h:117
BOOL
unsigned int BOOL
Definition:
ntddk_ex.h:94
cvt1
errno_t const cvt1
Definition:
strftime.cpp:139
errno_t
int errno_t
Definition:
corecrt.h:615
LPCSTR
const char * LPCSTR
Definition:
xmlstorage.h:183
sdk
lib
ucrt
internal
SetCurrentDirectoryA.cpp
Generated on Fri Jul 11 2025 06:15:22 for ReactOS by
1.9.6