Changeset 49634 in vbox for trunk/src/VBox/HostDrivers/Support/win
- Timestamp:
- Nov 22, 2013 6:11:29 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/win/SUPDrv-win.cpp
r48132 r49634 1035 1035 1036 1036 1037 #ifdef SUPDRV_WITH_MSR_PROBER 1038 1039 int VBOXCALL supdrvOSMsrProberRead(uint32_t uMsr, RTCPUID idCpu, uint64_t *puValue) 1040 { 1041 NOREF(uMsr); NOREF(idCpu); NOREF(puValue); 1042 return VERR_NOT_SUPPORTED; 1043 } 1044 1045 1046 int VBOXCALL supdrvOSMsrProberWrite(uint32_t uMsr, RTCPUID idCpu, uint64_t uValue) 1047 { 1048 NOREF(uMsr); NOREF(idCpu); NOREF(uValue); 1049 return VERR_NOT_SUPPORTED; 1050 } 1051 1052 1053 int VBOXCALL supdrvOSMsrProberModify(RTCPUID idCpu, PSUPMSRPROBER pReq) 1054 { 1055 NOREF(idCpu); NOREF(pReq); 1056 return VERR_NOT_SUPPORTED; 1057 } 1058 1059 #endif /* SUPDRV_WITH_MSR_PROBER */ 1060 1061 1037 1062 /** 1038 1063 * Converts an IPRT error code to an nt status code.
Note:
See TracChangeset
for help on using the changeset viewer.