Changeset 27685 in vbox for trunk/src/VBox/Main
- Timestamp:
- Mar 24, 2010 7:27:23 PM (15 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r27680 r27685 4714 4714 } 4715 4715 4716 STDMETHODIMP Machine::ReadLog(ULONG /*aIdx*/, ULONG64 /*aOffset*/, ULONG64 /*aSize*/, ComSafeArrayOut(BYTE, aData)) 4717 { 4718 CheckComArgExpr(aData, !ComSafeArrayOutIsNull(aData)); 4719 4720 ReturnComNotImplemented(); 4721 } 4722 4723 4716 4724 // public methods for internal purposes 4717 4725 ///////////////////////////////////////////////////////////////////////////// -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r27677 r27685 4270 4270 <interface 4271 4271 name="IMachine" extends="$unknown" 4272 uuid=" 254f7fd0-a99b-4ea9-992f-794624e67882"4272 uuid="07862b34-c068-4667-be7d-1d722f496f20" 4273 4273 wsmap="managed" 4274 4274 > … … 6132 6132 </param> 6133 6133 </method> 6134 </interface> 6134 6135 <method name="readLog"> 6136 <desc> 6137 Reads the VM log file. The chunk size is limited, so even if you 6138 ask for a big piece there might be less data returned. 6139 </desc> 6140 <param name="idx" type="unsigned long" dir="in"> 6141 <desc> 6142 Which log file to read. 0=current log file. 6143 </desc> 6144 </param> 6145 <param name="offset" type="unsigned long long" dir="in"> 6146 <desc> 6147 Offset in the log file. 6148 </desc> 6149 </param> 6150 <param name="size" type="unsigned long long" dir="in"> 6151 <desc> 6152 Chunk size to read in the log file. 6153 </desc> 6154 </param> 6155 <param name="data" type="octet" dir="return" safearray="yes"> 6156 <desc> 6157 Data read from the log file. A data size of 0 means end of file 6158 if the requested chunk size was not 0. 6159 </desc> 6160 </param> 6161 </method> 6162 </interface> 6135 6163 6136 6164 <!-- -
trunk/src/VBox/Main/include/MachineImpl.h
r27677 r27685 506 506 STDMETHOD(HotUnplugCPU(ULONG aCpu)); 507 507 STDMETHOD(GetCPUStatus(ULONG aCpu, BOOL *aCpuAttached)); 508 STDMETHOD(ReadLog(ULONG aIdx, ULONG64 aOffset, ULONG64 aSize, ComSafeArrayOut(BYTE, aData))); 508 509 509 510 // public methods only for internal purposes
Note:
See TracChangeset
for help on using the changeset viewer.