Changeset 104028 in vbox
- Timestamp:
- Mar 24, 2024 6:35:08 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ResourceAssignmentManager.cpp
r102517 r104028 66 66 { 67 67 char szDevName[32]; 68 RTGCPHYS GCPhysStart;69 RTGCPHYS GCPhysEnd;68 RTGCPHYS mGCPhysStart; 69 RTGCPHYS mGCPhysEnd; 70 70 71 71 MemoryRange(const char *pszName, RTGCPHYS GCPhysStart, RTGCPHYS GCPhysEnd) 72 72 { 73 73 RTStrCopy(this->szDevName, sizeof(szDevName), pszName); 74 this-> GCPhysStart = GCPhysStart;75 this-> GCPhysEnd = GCPhysEnd;74 this->mGCPhysStart = GCPhysStart; 75 this->mGCPhysEnd = GCPhysEnd; 76 76 } 77 77
Note:
See TracChangeset
for help on using the changeset viewer.