Changeset 79421 in vbox for trunk/include
- Timestamp:
- Jun 28, 2019 8:34:58 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 131663
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/dir.h
r78947 r79421 66 66 /** Ignore errors setting the not-content-indexed flag. Windows only atm. */ 67 67 #define RTDIRCREATE_FLAGS_NOT_CONTENT_INDEXED_NOT_CRITICAL RT_BIT(2) 68 /** Ignore umask when applying the mode. */ 69 #define RTDIRCREATE_FLAGS_IGNORE_UMASK RT_BIT(3) 68 70 /** Valid mask. */ 69 #define RTDIRCREATE_FLAGS_VALID_MASK UINT32_C(0x0000000 7)71 #define RTDIRCREATE_FLAGS_VALID_MASK UINT32_C(0x0000000f) 70 72 /** @} */ 71 73 … … 81 83 82 84 /** 83 * Creates a directory including all parent directories in the path 84 * if they don't exist. 85 * Creates a directory including all non-existing parent directories. 85 86 * 86 87 * @returns iprt status code. … … 89 90 */ 90 91 RTDECL(int) RTDirCreateFullPath(const char *pszPath, RTFMODE fMode); 92 93 /** 94 * Creates a directory including all non-existing parent directories. 95 * 96 * @returns iprt status code. 97 * @param pszPath Path to the directory to create. 98 * @param fMode The mode of the new directories. 99 * @param fCreate Create flags, RTDIRCREATE_FLAGS_*. 100 */ 101 RTDECL(int) RTDirCreateFullPathEx(const char *pszPath, RTFMODE fMode, uint32_t fFlags); 91 102 92 103 /** -
trunk/include/iprt/mangling.h
r78947 r79421 770 770 # define RTDirCreate RT_MANGLER(RTDirCreate) 771 771 # define RTDirCreateFullPath RT_MANGLER(RTDirCreateFullPath) 772 # define RTDirCreateFullPathEx RT_MANGLER(RTDirCreateFullPathEx) 772 773 # define RTDirCreateTemp RT_MANGLER(RTDirCreateTemp) 773 774 # define RTDirCreateTempSecure RT_MANGLER(RTDirCreateTempSecure)
Note:
See TracChangeset
for help on using the changeset viewer.