Changeset 57438 in vbox
- Timestamp:
- Aug 18, 2015 3:40:07 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102204
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r57428 r57438 1411 1411 #ifdef DEBUG 1412 1412 /** Simple unit test/operation examples for sanitiseMachineFilename(). */ 1413 static unsigned testSanitiseMachineFilename( void (*pfnPrintf)(const char *, ...))1413 static unsigned testSanitiseMachineFilename(DECLCALLBACKMEMBER(void, pfnPrintf)(const char *, ...)) 1414 1414 { 1415 1415 unsigned cErrors = 0; -
trunk/src/VBox/Main/webservice/vboxweb.cpp
r56600 r57438 100 100 typedef std::map<RTTHREAD, com::Utf8Str> ThreadsMap; 101 101 102 static intfntWatchdog(RTTHREAD ThreadSelf, void *pvUser);102 static DECLCALLBACK(int) fntWatchdog(RTTHREAD ThreadSelf, void *pvUser); 103 103 104 104 /**************************************************************************** … … 403 403 * @return 404 404 */ 405 static intfntWrapper(RTTHREAD pThread, void *pvThread)405 static DECLCALLBACK(int) fntWrapper(RTTHREAD pThread, void *pvThread) 406 406 { 407 407 SoapThread *pst = (SoapThread*)pvThread; … … 1420 1420 * that case, the websession is automatically logged off. 1421 1421 */ 1422 /* static */ 1423 int fntWatchdog(RTTHREAD ThreadSelf, void *pvUser) 1422 static DECLCALLBACK(int) fntWatchdog(RTTHREAD ThreadSelf, void *pvUser) 1424 1423 { 1425 1424 // store a log prefix for this thread
Note:
See TracChangeset
for help on using the changeset viewer.