Changeset 40652 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Mar 26, 2012 4:36:16 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/PDMInternal.h
r39839 r40652 25 25 #include <VBox/vusb.h> 26 26 #include <VBox/vmm/pdmasynccompletion.h> 27 #ifdef VBOX_WITH_NETSHAPER 28 #include <VBox/vmm/pdmnetshaper.h> 29 #endif /* VBOX_WITH_NETSHAPER */ 27 30 #include <VBox/vmm/pdmblkcache.h> 28 31 #include <VBox/vmm/pdmcommon.h> … … 1061 1064 R3PTRTYPE(PPDMASYNCCOMPLETIONTEMPLATE) pAsyncCompletionTemplates; 1062 1065 /** @} */ 1066 #ifdef VBOX_WITH_NETSHAPER 1067 /** Pointer to network shaper instance. */ 1068 R3PTRTYPE(PPDMNETSHAPER) pNetShaper; 1069 #endif /* VBOX_WITH_NETSHAPER */ 1063 1070 1064 1071 R3PTRTYPE(PPDMBLKCACHEGLOBAL) pBlkCacheGlobal; … … 1180 1187 #endif 1181 1188 1189 #ifdef VBOX_WITH_NETSHAPER 1190 int pdmR3NetShaperInit(PVM pVM); 1191 int pdmR3NetShaperTerm(PVM pVM); 1192 #endif 1193 1182 1194 int pdmR3BlkCacheInit(PVM pVM); 1183 1195 void pdmR3BlkCacheTerm(PVM pVM);
Note:
See TracChangeset
for help on using the changeset viewer.