Changeset 2713 for trunk/src/lib/nt/nthlpfs.c
- Timestamp:
- Nov 21, 2013, 10:11:00 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/nt/nthlpfs.c
r2710 r2713 78 78 79 79 80 staticint birdDosToNtPath(const char *pszPath, MY_UNICODE_STRING *pNtPath)80 int birdDosToNtPath(const char *pszPath, MY_UNICODE_STRING *pNtPath) 81 81 { 82 82 MY_NTSTATUS rcNt; … … 128 128 129 129 130 static MY_NTSTATUS birdOpenFileInternal(MY_UNICODE_STRING *pNtPath, ACCESS_MASK fDesiredAccess, ULONG fFileAttribs,131 132 130 MY_NTSTATUS birdOpenFileUniStr(MY_UNICODE_STRING *pNtPath, ACCESS_MASK fDesiredAccess, ULONG fFileAttribs, 131 ULONG fShareAccess, ULONG fCreateDisposition, ULONG fCreateOptions, ULONG fObjAttribs, 132 HANDLE *phFile) 133 133 { 134 134 MY_IO_STATUS_BLOCK Ios; … … 203 203 { 204 204 HANDLE hFile; 205 rcNt = birdOpenFile Internal(&NtPath, fDesiredAccess, fFileAttribs, fShareAccess,206 205 rcNt = birdOpenFileUniStr(&NtPath, fDesiredAccess, fFileAttribs, fShareAccess, 206 fCreateDisposition, fCreateOptions, fObjAttribs, &hFile); 207 207 if (MY_NT_SUCCESS(rcNt)) 208 208 { … … 278 278 */ 279 279 HANDLE hFile; 280 rcNt = birdOpenFile Internal(&NtPath, fDesiredAccess, fFileAttribs, fShareAccess,281 280 rcNt = birdOpenFileUniStr(&NtPath, fDesiredAccess, fFileAttribs, fShareAccess, 281 fCreateDisposition, fCreateOptions, fObjAttribs, &hFile); 282 282 if (MY_NT_SUCCESS(rcNt)) 283 283 {
Note:
See TracChangeset
for help on using the changeset viewer.