Skip to content

Latest commit

 

History

History
73 lines (58 loc) · 2.23 KB

command-code-enumerator.md

File metadata and controls

73 lines (58 loc) · 2.23 KB
title description ms.date ms.topic helpviewer_keywords author ms.author manager ms.subservice
Command Code Enumerator
The Command code enumerator is used in options for SccGetCommandOptions and SccPopulateListto to indicate the command for which the options are specified.
11/04/2016
reference
command code enumerator
source control plug-ins, command code enumeration
maiak
maiak
mijacobs
extensibility-integration

Command code enumerator

This enumerator is used in the options for the SccGetCommandOptions and the SccPopulateListto indicate the command for which the options are specified.

Syntax

enum SCCCOMMAND {
   SCC_COMMAND_GET,
   SCC_COMMAND_CHECKOUT,
   SCC_COMMAND_CHECKIN,
   SCC_COMMAND_UNCHECKOUT,
   SCC_COMMAND_ADD,
   SCC_COMMAND_REMOVE,
   SCC_COMMAND_DIFF,
   SCC_COMMAND_HISTORY,
   SCC_COMMAND_RENAME,
   SCC_COMMAND_PROPERTIES,
   SCC_COMMAND_OPTIONS
};

Members

SCC_COMMAND_GET Corresponds to the SccGet.

SCC_COMMAND_CHECKOUT Corresponds to the SccCheckout.

SCC_COMMAND_CHECKIN Corresponds to the SccCheckin.

SCC_COMMAND_UNCHECKOUT Corresponds to the SccUncheckout.

SCC_COMMAND_ADD Corresponds to the SccAdd.

SCC_COMMAND_REMOVE Corresponds to the SccRemove.

SCC_COMMAND_DIFF Corresponds to the SccDiff.

SCC_COMMAND_HISTORY Corresponds to the SccHistory.

SCC_COMMAND_RENAME Corresponds to the SccRename.

SCC_COMMAND_PROPERTIES Corresponds to the SccProperties.

SCC_COMMAND_OPTIONS Corresponds to the SccSetOption.

See also