VirtualBox

Changeset 94234 in vbox for trunk


Ignore:
Timestamp:
Mar 15, 2022 9:19:29 AM (3 years ago)
Author:
vboxsync
Message:

FE/VBoxManage: Remove the now unused VBoxManageHelp build target and the VBOX_ONLY_DOCS #ifdef's in the code, ​bugref:9186

Location:
trunk/src/VBox/Frontends/VBoxManage
Files:
23 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/Makefile.kmk

    r93814 r94234  
    5555        $(if $(VBOX_WITH_MAIN_NLS),VBOX_WITH_MAIN_NLS) \
    5656        $(if $(VBOX_WITH_TPM),VBOX_WITH_TPM)
    57 
    58 
    59 ifdef VBOX_WITH_DOCS
    60  PROGRAMS += VBoxManageHelp
    61 endif
    62 VBoxManageHelp_TEMPLATE   = VBoxAdvBldProg
    63 VBoxManageHelp_DEFS      += \
    64         VBOX_ONLY_DOCS \
    65        $(VBOX_COMMON_VBOXMANAGE_DEFS)
    66 VBoxManageHelp_SOURCES    = \
    67         VBoxManage.cpp \
    68         VBoxManageHelp.cpp \
    69         $(if $(VBOX_WITH_GUEST_PROPS),VBoxManageGuestProp.cpp) \
    70         $(if $(VBOX_WITH_GUEST_CONTROL),VBoxManageGuestCtrl.cpp)
    7157
    7258
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp

    r94233 r94234  
    2020*   Header Files                                                                                                                 *
    2121*********************************************************************************************************************************/
    22 #ifndef VBOX_ONLY_DOCS
    23 # include <VBox/com/com.h>
    24 # include <VBox/com/string.h>
    25 # include <VBox/com/Guid.h>
    26 # include <VBox/com/array.h>
    27 # include <VBox/com/ErrorInfo.h>
    28 # include <VBox/com/errorprint.h>
    29 # include <VBox/com/NativeEventQueue.h>
    30 
    31 # include <VBox/com/VirtualBox.h>
    32 #endif /* !VBOX_ONLY_DOCS */
     22#include <VBox/com/com.h>
     23#include <VBox/com/string.h>
     24#include <VBox/com/Guid.h>
     25#include <VBox/com/array.h>
     26#include <VBox/com/ErrorInfo.h>
     27#include <VBox/com/errorprint.h>
     28#include <VBox/com/NativeEventQueue.h>
     29
     30#include <VBox/com/VirtualBox.h>
    3331
    3432#ifdef VBOX_WITH_VBOXMANAGE_NLS
     
    6866*   Structures and Typedefs                                                                                                      *
    6967*********************************************************************************************************************************/
    70 #ifndef VBOX_ONLY_DOCS
     68
    7169/**
    7270 * VBoxManage command descriptor.
     
    8583/** Pointer to a const VBoxManage command descriptor. */
    8684typedef VBMGCMD const *PCVBMGCMD;
    87 #endif
     85
    8886
    8987DECLARE_TRANSLATION_CONTEXT(VBoxManage);
     
    178176*********************************************************************************************************************************/
    179177/*extern*/ bool         g_fDetailedProgress = false;
    180 
    181 #ifndef VBOX_ONLY_DOCS
    182178/** Set by the signal handler. */
    183179static volatile bool    g_fCanceled = false;
     
    501497}
    502498
    503 #endif /* !VBOX_ONLY_DOCS */
    504 
    505499
    506500void setBuiltInHelpLanguage(const char *pszLang)
     
    556550    if (RT_FAILURE(vrc))
    557551        return RTMsgInitFailure(vrc);
    558 #if defined(RT_OS_WINDOWS) && !defined(VBOX_ONLY_DOCS)
     552#if defined(RT_OS_WINDOWS)
    559553    ATL::CComModule _Module; /* Required internally by ATL (constructor records instance in global variable). */
    560554#endif
     
    605599    const char *pszSettingsPw = NULL;
    606600    const char *pszSettingsPwFile = NULL;
    607 #ifndef VBOX_ONLY_DOCS
    608601    int         cResponseFileArgs     = 0;
    609602    char      **papszResponseFileArgs = NULL;
    610603    char      **papszNewArgv          = NULL;
    611 #endif
     604
    612605    for (int i = 1; i < argc || argc <= iCmd; i++)
    613606    {
     
    631624        }
    632625
    633 #ifndef VBOX_ONLY_DOCS
    634626        if (   !strcmp(argv[i], "-V")
    635627            || !strcmp(argv[i], "--version")
     
    648640            return 0;
    649641        }
    650 #endif
    651642
    652643        if (   !strcmp(argv[i], "--dumpopts")
     
    689680            iCmd += 2;
    690681        }
    691 #ifndef VBOX_ONLY_DOCS
    692682        else if (argv[i][0] == '@')
    693683        {
     
    729719            iCmd++;
    730720        }
    731 #endif
    732721        else
    733722            break;
     
    742731        showLogo(g_pStdOut);
    743732
    744 #ifndef VBOX_ONLY_DOCS
    745733    PCVBMGCMD pCmd = lookupCommand(argv[iCmd]);
    746734    if (pCmd && pCmd->enmCmdHelp != VBMG_CMD_INTERNAL)
     
    945933
    946934    return rcExit;
    947 #else  /* VBOX_ONLY_DOCS */
    948     return RTEXITCODE_SUCCESS;
    949 #endif /* VBOX_ONLY_DOCS */
    950935}
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h

    r94231 r94234  
    2222#endif
    2323
    24 #ifndef VBOX_ONLY_DOCS
    2524#include <VBox/com/com.h>
    2625#include <VBox/com/ptr.h>
     
    2827#include <VBox/com/string.h>
    2928#include <VBox/com/array.h>
    30 #endif /* !VBOX_ONLY_DOCS */
    3129
    3230#include <iprt/types.h>
     
    3533#include <iprt/getopt.h>
    3634
    37 #ifndef VBOX_ONLY_DOCS
    38 # include "VBoxManageBuiltInHelp.h"
    39 # include "PasswordInput.h"
    40 #endif
     35#include "VBoxManageBuiltInHelp.h"
     36#include "PasswordInput.h"
    4137
    4238#ifdef VBOX_WITH_VBOXMANAGE_NLS
     
    130126    char **argv;
    131127
    132 #ifndef VBOX_ONLY_DOCS
    133128    ComPtr<IVirtualBox> virtualBox;
    134129    ComPtr<ISession> session;
    135 #endif
    136130};
    137131
     
    176170void printUsageInternal(USAGECATEGORY enmCommand, PRTSTREAM pStrm);
    177171
    178 #ifndef VBOX_ONLY_DOCS
    179172void        setCurrentCommand(enum HELP_CMD_VBOXMANAGE enmCommand);
    180173void        setCurrentSubcommand(uint64_t fCurSubcommandScope);
     
    198191# define SHOW_PROGRESS_DETAILS  RT_BIT_32(2)
    199192HRESULT showProgress(ComPtr<IProgress> progress, uint32_t fFlags = SHOW_PROGRESS);
    200 #endif
    201193
    202194/* VBoxManage.cpp */
    203195void showLogo(PRTSTREAM pStrm);
    204196
    205 #ifndef VBOX_ONLY_DOCS
    206197RTEXITCODE handleInternalCommands(HandlerArg *a);
    207 #endif /* !VBOX_ONLY_DOCS */
    208198
    209199/* VBoxManageControlVM.cpp */
     
    211201
    212202/* VBoxManageModifyVM.cpp */
    213 #ifndef VBOX_ONLY_DOCS
    214203void parseGroups(const char *pcszGroups, com::SafeArray<BSTR> *pGroups);
    215 # ifdef VBOX_WITH_RECORDING
     204#ifdef VBOX_WITH_RECORDING
    216205int parseScreens(const char *pcszScreens, com::SafeArray<BOOL> *pScreens);
    217 # endif
    218206#endif
    219207RTEXITCODE handleModifyVM(HandlerArg *a);
     
    222210RTEXITCODE handleDebugVM(HandlerArg *a);
    223211
    224 #ifndef VBOX_ONLY_DOCS
    225212/* VBoxManageGuestProp.cpp */
    226213RTEXITCODE handleGuestProperty(HandlerArg *a);
     
    350337RTEXITCODE handleModifyNvram(HandlerArg *a);
    351338
    352 #endif /* !VBOX_ONLY_DOCS */
    353 
    354339#endif /* !VBOX_INCLUDED_SRC_VBoxManage_VBoxManage_h */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp

    r93835 r94234  
    1616 */
    1717
    18 #ifndef VBOX_ONLY_DOCS
    19 
    20 
    2118/*********************************************************************************************************************************
    2219*   Header Files                                                                                                                 *
    2320*********************************************************************************************************************************/
    24 #ifndef VBOX_ONLY_DOCS
    2521#include <VBox/com/com.h>
    2622#include <VBox/com/string.h>
     
    3733#include <list>
    3834#include <map>
    39 #endif /* !VBOX_ONLY_DOCS */
    4035
    4136#include <iprt/getopt.h>
     
    28772872    return RT_SUCCESS(rc) ? RTEXITCODE_SUCCESS : RTEXITCODE_FAILURE;
    28782873}
    2879 
    2880 #endif /* !VBOX_ONLY_DOCS */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageBandwidthControl.cpp

    r94181 r94234  
    1515 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
    1616 */
    17 
    18 #ifndef VBOX_ONLY_DOCS
    19 
    2017
    2118/*********************************************************************************************************************************
     
    375372    return SUCCEEDED(rc) ? RTEXITCODE_SUCCESS : RTEXITCODE_FAILURE;
    376373}
    377 
    378 #endif /* !VBOX_ONLY_DOCS */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageDisk.cpp

    r94218 r94234  
    1515 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
    1616 */
    17 
    18 #ifndef VBOX_ONLY_DOCS
    19 
    2017
    2118/*********************************************************************************************************************************
     
    27302727    return errorNoSubcommand();
    27312728}
    2732 
    2733 #endif /* !VBOX_ONLY_DOCS */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp

    r94209 r94234  
    2222#include "VBoxManage.h"
    2323#include "VBoxManageGuestCtrl.h"
    24 
    25 #ifndef VBOX_ONLY_DOCS
    2624
    2725#include <VBox/com/array.h>
     
    217215    kStreamTransform_Unix2Dos
    218216};
    219 #endif /* VBOX_ONLY_DOCS */
     217
    220218
    221219DECLARE_TRANSLATION_CONTEXT(GuestCtrl);
    222 
    223 #ifndef VBOX_ONLY_DOCS
    224220
    225221
     
    37263722    return rcExit;
    37273723}
    3728 #endif /* !VBOX_ONLY_DOCS */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.h

    r93115 r94234  
    2222#endif
    2323
    24 #ifndef VBOX_ONLY_DOCS
    25 
    2624#include <VBox/com/com.h>
    2725#include <VBox/com/listeners.h>
     
    259257    AdditionsRunLevelType_T mRunLevelTarget;
    260258};
    261 #endif /* !VBOX_ONLY_DOCS */
    262259
    263260#endif /* !VBOX_INCLUDED_SRC_VBoxManage_VBoxManageGuestCtrl_h */
    264 
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrlListener.cpp

    r93115 r94234  
    2222#include "VBoxManage.h"
    2323#include "VBoxManageGuestCtrl.h"
    24 
    25 #ifndef VBOX_ONLY_DOCS
    2624
    2725#include <VBox/com/com.h>
     
    569567    return S_OK;
    570568}
    571 
    572 #endif /* !VBOX_ONLY_DOCS */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestProp.cpp

    r94208 r94234  
    2222#include "VBoxManage.h"
    2323
    24 #ifndef VBOX_ONLY_DOCS
    25 
    2624#include <VBox/com/com.h>
    2725#include <VBox/com/string.h>
     
    4947using namespace com;
    5048
    51 #endif /* !VBOX_ONLY_DOCS */
    52 
    5349DECLARE_TRANSLATION_CONTEXT(GuestProp);
    5450
    55 
    56 #ifndef VBOX_ONLY_DOCS
    5751
    5852static RTEXITCODE handleGetGuestProperty(HandlerArg *a)
     
    428422    return errorSyntax(GuestProp::tr("Incorrect parameters"));
    429423}
    430 
    431 #endif /* !VBOX_ONLY_DOCS */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp

    r94218 r94234  
    4949DECLARE_TRANSLATION_CONTEXT(Help);
    5050
    51 #ifndef VBOX_ONLY_DOCS
    5251static enum HELP_CMD_VBOXMANAGE    g_enmCurCommand = HELP_CMD_VBOXMANAGE_INVALID;
    5352/** The scope mask for the current subcommand. */
     
    488487    return RTEXITCODE_SYNTAX;
    489488}
    490 
    491 #endif /* !VBOX_ONLY_DOCS */
    492 
    493489
    494490
     
    584580                     "\n");
    585581
    586 #ifndef VBOX_ONLY_DOCS /* Converted to man page, not needed. */
    587582    if (enmCommand == USAGE_S_ALL)
    588583    {
     
    606601        }
    607602    }
    608 #endif
    609603}
    610604
     
    617611    va_list args;
    618612    showLogo(g_pStdErr); // show logo even if suppressed
    619 #ifndef VBOX_ONLY_DOCS
     613
    620614    if (g_fInternalMode)
    621615        printUsageInternal(enmCommand, g_pStdErr);
     
    624618    else
    625619        printUsage(g_pStdErr);
    626 #else
    627     RT_NOREF_PV(enmCommand);
    628 #endif
     620
    629621    va_start(args, pszFormat);
    630622    RTStrmPrintf(g_pStdErr, Help::tr("\nSyntax error: %N\n"), pszFormat, &args);
     
    641633    va_list args;
    642634    showLogo(g_pStdErr); // show logo even if suppressed
    643 #ifndef VBOX_ONLY_DOCS
     635
    644636    if (g_fInternalMode)
    645637        printUsageInternal(enmCommand, g_pStdErr);
     
    648640    else
    649641        printUsage(g_pStdErr);
    650 #else
    651     RT_NOREF2(enmCommand, fSubcommandScope);
    652 #endif
     642
    653643    va_start(args, pszFormat);
    654644    RTStrmPrintf(g_pStdErr, Help::tr("\nSyntax error: %N\n"), pszFormat, &args);
     
    673663     * Check if it is an unhandled standard option.
    674664     */
    675 #ifndef VBOX_ONLY_DOCS
    676665    if (rc == 'V')
    677666    {
     
    679668        return RTEXITCODE_SUCCESS;
    680669    }
    681 #endif
    682670
    683671    if (rc == 'h')
    684672    {
    685673        showLogo(g_pStdErr);
    686 #ifndef VBOX_ONLY_DOCS
     674
    687675        if (g_fInternalMode)
    688676            printUsageInternal(enmCommand, g_pStdOut);
     
    691679        else
    692680            printUsage(g_pStdErr);
    693 #endif
     681
    694682        return RTEXITCODE_SUCCESS;
    695683    }
     
    699687     */
    700688    showLogo(g_pStdErr); // show logo even if suppressed
    701 #ifndef VBOX_ONLY_DOCS
     689
    702690    if (g_fInternalMode)
    703691        printUsageInternal(enmCommand, g_pStdErr);
     
    706694    else
    707695        printUsage(g_pStdErr);
    708 #else
    709     RT_NOREF2(enmCommand, fSubcommandScope);
    710 #endif
    711696
    712697    if (rc == VINF_GETOPT_NOT_OPTION)
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageHostonly.cpp

    r94212 r94234  
    2020*   Header Files                                                                                                                 *
    2121*********************************************************************************************************************************/
    22 #ifndef VBOX_ONLY_DOCS
    2322#include <VBox/com/com.h>
    2423#include <VBox/com/array.h>
     
    2625#include <VBox/com/errorprint.h>
    2726#include <VBox/com/VirtualBox.h>
    28 #endif /* !VBOX_ONLY_DOCS */
    2927
    3028#include <iprt/cidr.h>
     
    4341DECLARE_TRANSLATION_CONTEXT(HostOnly);
    4442
    45 #ifndef VBOX_ONLY_DOCS
     43
    4644using namespace com;
    4745
     
    537535}
    538536#endif /* VBOX_WITH_VMNET */
    539 
    540 #endif /* !VBOX_ONLY_DOCS */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp

    r93702 r94234  
    1515 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
    1616 */
    17 
    18 #ifndef VBOX_ONLY_DOCS
    19 
    2017
    2118/*********************************************************************************************************************************
     
    31083105}
    31093106
    3110 #endif /* !VBOX_ONLY_DOCS */
    31113107/* vi: set tabstop=4 shiftwidth=4 expandtab: */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp

    r93699 r94234  
    1515 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
    1616 */
    17 
    18 #ifndef VBOX_ONLY_DOCS
    19 
    2017
    2118/*********************************************************************************************************************************
     
    23702367}
    23712368
    2372 #endif /* !VBOX_ONLY_DOCS */
    23732369/* vi: set tabstop=4 shiftwidth=4 expandtab: */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageMetrics.cpp

    r94210 r94234  
    1515 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
    1616 */
    17 
    18 #ifndef VBOX_ONLY_DOCS
    19 
    2017
    2118/*********************************************************************************************************************************
     
    662659    return rcExit;
    663660}
    664 
    665 #endif /* !VBOX_ONLY_DOCS */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp

    r94206 r94234  
    2020*   Header Files                                                                                                                 *
    2121*********************************************************************************************************************************/
    22 #ifndef VBOX_ONLY_DOCS
    23 # include <VBox/com/com.h>
    24 # include <VBox/com/string.h>
    25 # include <VBox/com/Guid.h>
    26 # include <VBox/com/array.h>
    27 # include <VBox/com/ErrorInfo.h>
    28 # include <VBox/com/errorprint.h>
    29 # include <VBox/com/VirtualBox.h>
    30 # include <VBox/com/NativeEventQueue.h>
    31 #endif /* !VBOX_ONLY_DOCS */
     22#include <VBox/com/com.h>
     23#include <VBox/com/string.h>
     24#include <VBox/com/Guid.h>
     25#include <VBox/com/array.h>
     26#include <VBox/com/ErrorInfo.h>
     27#include <VBox/com/errorprint.h>
     28#include <VBox/com/VirtualBox.h>
     29#include <VBox/com/NativeEventQueue.h>
    3230
    3331#include <iprt/asm.h>
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyNvram.cpp

    r93115 r94234  
    1616 */
    1717
    18 #ifndef VBOX_ONLY_DOCS
    19 
    20 
    2118/*********************************************************************************************************************************
    2219*   Header Files                                                                                                                 *
     
    496493    return SUCCEEDED(rc) ? RTEXITCODE_SUCCESS : RTEXITCODE_FAILURE;
    497494}
    498 
    499 #endif /* !VBOX_ONLY_DOCS */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp

    r94070 r94234  
    2020*   Header Files                                                                                                                 *
    2121*********************************************************************************************************************************/
    22 #ifndef VBOX_ONLY_DOCS
    2322#include <VBox/com/com.h>
    2423#include <VBox/com/array.h>
     
    2625#include <VBox/com/errorprint.h>
    2726#include <VBox/com/VirtualBox.h>
    28 #endif /* !VBOX_ONLY_DOCS */
    2927
    3028#include <iprt/cidr.h>
     
    4240DECLARE_TRANSLATION_CONTEXT(ModifyVM);
    4341
    44 #ifndef VBOX_ONLY_DOCS
    4542using namespace com;
    4643/** @todo refine this after HDD changes; MSC 8.0/64 has trouble with handleModifyVM.  */
     
    35423539    return SUCCEEDED(rc) ? RTEXITCODE_SUCCESS : RTEXITCODE_FAILURE;
    35433540}
    3544 
    3545 #endif /* !VBOX_ONLY_DOCS */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageNATNetwork.cpp

    r94211 r94234  
    2020*   Header Files                                                                                                                 *
    2121*********************************************************************************************************************************/
    22 #ifndef VBOX_ONLY_DOCS
    23 
    2422#include <VBox/com/com.h>
    2523#include <VBox/com/array.h>
     
    2725#include <VBox/com/errorprint.h>
    2826#include <VBox/com/VirtualBox.h>
    29 #endif /* !VBOX_ONLY_DOCS */
    3027
    3128#ifndef RT_OS_WINDOWS
     
    5754#include "VBoxPortForwardString.h"
    5855
    59 #ifndef VBOX_ONLY_DOCS
    6056
    6157DECLARE_TRANSLATION_CONTEXT(Nat);
     
    695691    return RTEXITCODE_SUCCESS;
    696692}
    697 
    698 #endif /* !VBOX_ONLY_DOCS */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageStorageController.cpp

    r94217 r94234  
    1515 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
    1616 */
    17 
    18 #ifndef VBOX_ONLY_DOCS
    19 
    2017
    2118/*********************************************************************************************************************************
     
    12971294    return SUCCEEDED(rc) ? RTEXITCODE_SUCCESS : RTEXITCODE_FAILURE;
    12981295}
    1299 
    1300 #endif /* !VBOX_ONLY_DOCS */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageUpdateCheck.cpp

    r93115 r94234  
    1515 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
    1616 */
    17 
    18 #ifndef VBOX_ONLY_DOCS
    19 
    2017
    2118/*********************************************************************************************************************************
     
    367364}
    368365
    369 #endif /* !VBOX_ONLY_DOCS */
    370366/* vi: set tabstop=4 shiftwidth=4 expandtab: */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageUtils.cpp

    r93115 r94234  
    1616 */
    1717
    18 #ifndef VBOX_ONLY_DOCS
    1918#include "VBoxManageUtils.h"
    2019#include "VBoxManage.h"
     
    121120    RTMsgWarning(Utils::tr("Interface \"%s\" doesn't seem to exist"), pszTargetName);
    122121}
    123 
    124 #endif  /* !VBOX_ONLY_DOCS */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageUtils.h

    r93115 r94234  
    2222#endif
    2323
    24 #ifndef VBOX_ONLY_DOCS
    2524#include <VBox/com/com.h>
    2625#include <VBox/com/ptr.h>
    2726#include <VBox/com/VirtualBox.h>
    28 #endif
    2927
    3028unsigned int getMaxNics(const ComPtr<IVirtualBox> &pVirtualBox,
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette