Specifications

Chapter 30362
showColumnList is a list of Boolean values that correspond to the Design Note keys, which
indicate whether Dreamweaver can display the key as a column in the Site panel.
noteCount is the number of Design Notes that are attached to a file or folder; the
GetNoteCount() call returns this value.
noteLength is the maximum length of a Design Note; this is the value that the
GetMaxNoteLength() call returns.
Returns
true if successful; false otherwise.
bool SCS_SetDesignNotes()
Description
Stores the key-value pairs in the meta information for the specified file or folder. This replaces the
set of meta information for the file. If it is unsupported by the source control system,
Dreamweaver stores Design Notes in .mno files.
Arguments
void *connectionData, const char *remotePath, const char keyList[][64],
const char *valueList[], bool showColumnList[], const int noteCount,
const int noteLength
connectionData is a pointer to the agents data that passed into Dreamweaver during the
Connect() call.
remotePath is the remote file or folder path name that the DLL checks for the number of items.
keyList is a list of Design Note keys, such as "Status".
valueList is a list of Design Note values that corresponds to the Design Note keys, such as
"Awaiting Signoff".
showColumnList is a list of Boolean values that correspond to the Design Note keys, which
indicate whether Dreamweaver can display the key as a column in the Site panel.
noteCount is the number of Design Notes that are attached to a file or folder; this number lets
the DLL know the size of the specified lists. If noteCount is 0, all the Design Notes are
removed from the file.
noteLength is the length of the largest Design note for the specified file or folder.
Returns
true if successful; false otherwise.
bool SCS_IsRemoteNewer()
Description
Checks each specified remote path to see if the remote copy is newer. If it is unsupported by the
source control system, Dreamweaver uses its internal
isRemoteNewer algorithm.
Arguments
void *connectionData, const char *remotePathList[], const char *localPathList[],
int remoteIsNewerList[], const int numItems