Go to the source code of this file.
 | 
| ULONG  | PhNtStatusToDosError (_In_ NTSTATUS Status) | 
|   | Converts a NTSTATUS value to a Win32 error code.  
  | 
|   | 
| NTSTATUS  | PhDosErrorToNtStatus (_In_ ULONG DosError) | 
|   | Converts a Win32 error code to a NTSTATUS value.  
  | 
|   | 
| BOOLEAN  | PhNtStatusFileNotFound (_In_ NTSTATUS Status) | 
|   | Determines whether a NTSTATUS value indicates that a file cannot be not found.  
  | 
|   | 
      
        
          | NTSTATUS PhDosErrorToNtStatus  | 
          ( | 
          _In_ ULONG  | 
          DosError | ) | 
           | 
        
      
 
Converts a Win32 error code to a NTSTATUS value. 
Definition at line 47 of file error.c.
 
 
      
        
          | BOOLEAN PhNtStatusFileNotFound  | 
          ( | 
          _In_ NTSTATUS  | 
          Status | ) | 
           | 
        
      
 
Determines whether a NTSTATUS value indicates that a file cannot be not found. 
Definition at line 73 of file error.c.
 
 
      
        
          | ULONG PhNtStatusToDosError  | 
          ( | 
          _In_ NTSTATUS  | 
          Status | ) | 
           | 
        
      
 
Converts a NTSTATUS value to a Win32 error code. 
Definition at line 31 of file error.c.