Changeset 62228 in vbox for trunk/src/VBox/Debugger/DBGCCommands.cpp
- Timestamp:
- Jul 13, 2016 5:46:32 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCCommands.cpp
r59229 r62228 1778 1778 } 1779 1779 1780 1781 1782 /**1783 * @callback_method_impl{FNDBGCFUNC, The randu32() function implementation.}1784 */1785 static DECLCALLBACK(int) dbgcFuncRandU32(PCDBGCFUNC pFunc, PDBGCCMDHLP pCmdHlp, PVM pUVM, PCDBGCVAR paArgs, uint32_t cArgs,1786 PDBGCVAR pResult)1787 {1788 AssertReturn(cArgs == 0, VERR_DBGC_PARSE_BUG);1789 uint32_t u32 = RTRandU32();1790 DBGCVAR_INIT_NUMBER(pResult, u32);1791 NOREF(pFunc); NOREF(pCmdHlp); NOREF(pUVM); NOREF(paArgs);1792 return VINF_SUCCESS;1793 }1794
Note:
See TracChangeset
for help on using the changeset viewer.