Changeset 68828 in vbox for trunk/src/VBox/ExtPacks/VNC
- Timestamp:
- Sep 22, 2017 2:15:57 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 118082
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ExtPacks/VNC/VBoxVNCMain.cpp
r62496 r68828 5 5 6 6 /* 7 * Copyright (C) 2010-201 6Oracle Corporation7 * Copyright (C) 2010-2017 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 24 24 #include <VBox/err.h> 25 25 #include <VBox/version.h> 26 #include <VBox/vmm/cfgm.h>27 26 #include <iprt/string.h> 28 27 #include <iprt/param.h> … … 40 39 // * @interface_method_impl{VBOXEXTPACKREG,pfnInstalled} 41 40 // */ 42 // static DECLCALLBACK(void) vboxVNCExtPack_Installed(PCVBOXEXTPACKREG pThis, VBOXEXTPACK_IF_CS(IVirtualBox) *pVirtualBox); 41 // static DECLCALLBACK(void) vboxVNCExtPack_Installed(PCVBOXEXTPACKREG pThis, VBOXEXTPACK_IF_CS(IVirtualBox) *pVirtualBox, PRTERRINFO pErrInfo); 42 // 43 43 // /** 44 44 // * @interface_method_impl{VBOXEXTPACKREG,pfnUninstall} … … 55 55 // */ 56 56 // static DECLCALLBACK(void) vboxVNCExtPack_Unload(PCVBOXEXTPACKREG pThis); 57 // 57 58 // /** 58 59 // * @interface_method_impl{VBOXEXTPACKREG,pfnVMCreated} 59 60 // */ 60 // static DECLCALLBACK(int) vboxVNCExtPack_VMCreated(PCVBOXEXTPACKREG pThis, VBOXEXTPACK_IF_CS(IVirtualBox) *pVirtualBox, IMachine*pMachine);61 // static DECLCALLBACK(int) vboxVNCExtPack_VMCreated(PCVBOXEXTPACKREG pThis, VBOXEXTPACK_IF_CS(IVirtualBox) *pVirtualBox, VBOXEXTPACK_IF_CS(IMachine) *pMachine); 61 62 // 62 63 // /** 63 // * @interface_method_impl{VBOXEXTPACKREG,pfnVMConfigureVMM} 64 // */ 65 // static DECLCALLBACK(int) vboxVNCExtPack_VMConfigureVMM(PCVBOXEXTPACKREG pThis, IConsole *pConsole, PVM pVM); 66 // 67 // /** 68 // * @interface_method_impl{VBOXEXTPACKREG,pfnVMPowerOn} 69 // */ 70 // static DECLCALLBACK(int) vboxVNCExtPack_VMPowerOn(PCVBOXEXTPACKREG pThis, IConsole *pConsole, PVM pVM); 71 // /** 72 // * @interface_method_impl{VBOXEXTPACKREG,pfnVMPowerOff} 73 // */ 74 // static DECLCALLBACK(void) vboxVNCExtPack_VMPowerOff(PCVBOXEXTPACKREG pThis, IConsole *pConsole, PVM pVM); 75 // /** 76 // * @interface_method_impl{VBOXEXTPACKREG,pfnVMPowerOff} 64 // * @interface_method_impl{VBOXEXTPACKREG,pfnQueryObject} 77 65 // */ 78 66 // static DECLCALLBACK(void) vboxVNCExtPack_QueryObject(PCVBOXEXTPACKREG pThis, PCRTUUID pObjectId); … … 86 74 /* .pfnUninstall = */ NULL, 87 75 /* .pfnVirtualBoxReady =*/ NULL, 88 /* .pfnConsoleReady = */ NULL,89 76 /* .pfnUnload = */ NULL, 90 77 /* .pfnVMCreated = */ NULL, 91 /* .pfnVMConfigureVMM = */ NULL,92 /* .pfnVMPowerOn = */ NULL,93 /* .pfnVMPowerOff = */ NULL,94 78 /* .pfnQueryObject = */ NULL, 95 79 /* .pfnReserved1 = */ NULL,
Note:
See TracChangeset
for help on using the changeset viewer.