Changeset 71887 in vbox for trunk/src/VBox/Additions/WINNT/Mouse
- Timestamp:
- Apr 17, 2018 8:53:38 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Mouse/NT4/VBoxPS2NT.cpp
r70337 r71887 18 18 #define LOG_GROUP LOG_GROUP_DRV_MOUSE 19 19 #include <iprt/asm.h> 20 #include <iprt/initterm.h> 20 21 #include <VBox/err.h> 21 22 #include <VBox/log.h> … … 1815 1816 WCHAR pointerBuffer[NAME_MAX]; 1816 1817 1818 int rc = RTR0Init(0); 1819 if (RT_FAILURE(rc)) 1820 return STATUS_UNSUCCESSFUL; 1821 1817 1822 LogFlow(("VBoxMouseNT::DriverEntry: enter\n")); 1818 1823 … … 2226 2231 2227 2232 LogFlow(("VBoxMouseNT::DriverEntry: leave, status = %d\n", status)); 2228 2233 RTR0Term(); 2229 2234 return status; 2230 2235 }
Note:
See TracChangeset
for help on using the changeset viewer.