Changeset 3682 for trunk/src/lib/nt/ntunlink.h
- Timestamp:
- Aug 13, 2025, 1:34:19 AM (4 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/nt/ntunlink.h
r3060 r3682 33 33 34 34 #include "nttypes.h" 35 #include "ntat.h" 35 36 #include <wchar.h> 36 37 … … 48 49 int birdUnlinkForcedFastExW(void *hRoot, const wchar_t *pwszFile); 49 50 51 int birdRmDir(const char *pszFile); 52 int birdRmDirW(const wchar_t *pwszFile); 53 int birdRmDirEx(void *hRoot, const char *pszFile); 54 int birdRmDirExW(void *hRoot, const wchar_t *pwszFile); 55 int birdRmDirForced(const char *pszFile); 56 int birdRmDirForcedW(const wchar_t *pwszFile); 57 int birdRmDirForcedEx(void *hRoot, const char *pszFile); 58 int birdRmDirForcedExW(void *hRoot, const wchar_t *pszFile); 59 60 #define AT_REMOVEDIR 1 61 int birdUnlinkAt(int fdDir, const char *pszPath, int fFlags); 62 50 63 #undef unlink 51 64 #define unlink(a_pszPath) birdUnlinkForced(a_pszPath) 52 65 66 #undef rmdir 67 #define rmdir(a_pszPath) birdRmDirForced(a_pszPath) 68 69 #undef unlinkat 70 #define unlinkat(a_fdDir, a_pszPath, a_fFlags) birdUnlinkAt(a_fdDir, a_pszPath, a_fFlags) 71 53 72 #endif 54 73
Note:
See TracChangeset
for help on using the changeset viewer.