Changeset 95118 in vbox for trunk/src/VBox/Main
- Timestamp:
- May 25, 2022 8:57:49 PM (3 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/VirtualBoxImpl.h
r94737 r95118 148 148 149 149 #ifdef RT_OS_WINDOWS 150 typedef DECLCALLBACKPTR(HRESULT, SVCHelperClientFunc,(SVCHlpClient *aClient, Progress *aProgress, void *aUser, int *aVrc));150 typedef HRESULT (*PFN_SVC_HELPER_CLIENT_T)(SVCHlpClient *aClient, Progress *aProgress, void *aUser, int *aVrc); 151 151 HRESULT i_startSVCHelperClient(bool aPrivileged, 152 SVCHelperClientFuncaFunc,152 PFN_SVC_HELPER_CLIENT_T aFunc, 153 153 void *aUser, Progress *aProgress); 154 154 #endif -
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r94863 r95118 3086 3086 Progress* aProgress, 3087 3087 bool aPrivileged, 3088 VirtualBox:: SVCHelperClientFuncaFunc,3088 VirtualBox::PFN_SVC_HELPER_CLIENT_T aFunc, 3089 3089 void *aUser) 3090 3090 { … … 3109 3109 ComObjPtr<Progress> progress; 3110 3110 bool privileged; 3111 VirtualBox:: SVCHelperClientFuncfunc;3111 VirtualBox::PFN_SVC_HELPER_CLIENT_T func; 3112 3112 void *user; 3113 3113 ThreadVoidData *threadVoidData; … … 3171 3171 */ 3172 3172 HRESULT VirtualBox::i_startSVCHelperClient(bool aPrivileged, 3173 SVCHelperClientFuncaFunc,3173 PFN_SVC_HELPER_CLIENT_T aFunc, 3174 3174 void *aUser, Progress *aProgress) 3175 3175 {
Note:
See TracChangeset
for help on using the changeset viewer.