mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:33:10 +00:00
21 lines
321 B
C
21 lines
321 B
C
/*
|
|
*/
|
|
|
|
#ifndef ROSRTL_PATH_H__
|
|
#define ROSRTL_PATH_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
BOOL STDCALL MakeSureDirectoryPathExistsExA(LPCSTR DirPath, BOOL FileAtEnd);
|
|
BOOL STDCALL MakeSureDirectoryPathExistsExW(LPCWSTR DirPath, BOOL FileAtEnd);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
/* EOF */
|