Changeset 34250 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 22, 2010 3:21:57 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67998
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r33956 r34250 281 281 args.push_back(Bstr(Utf8Cmd).raw()); 282 282 283 /** @todo r=bird: Use RTGetOpt here, no new code using strcmp-if-switching! */ 283 284 /* Iterate through all possible commands (if available). */ 284 285 bool usageOK = true; … … 611 612 * @param pList Copy list used for insertion. 612 613 */ 614 /** @todo r=bird: static? */ 613 615 int ctrlCopyDirectoryEntryAppend(const char *pszFileSource, const char *pszFileDest, 614 616 PRTLISTNODE pList) … … 652 654 * @param pList Pointer to the object list to use. 653 655 */ 656 /** @todo r=bird: static? */ 654 657 int ctrlCopyDirectoryRead(const char *pszRootDir, const char *pszSubDir, 655 658 const char *pszFilter, const char *pszDest, … … 794 797 * @param pList Where to store the object list. 795 798 */ 799 /** @todo r=bird: static? */ 796 800 int ctrlCopyInit(const char *pszSource, const char *pszDest, uint32_t uFlags, 797 801 uint32_t *pcObjects, PRTLISTNODE pList) … … 919 923 * Destroys a copy list. 920 924 */ 925 /** @todo r=bird: static? */ 921 926 void ctrlCopyDestroy(PRTLISTNODE pList) 922 927 { … … 955 960 * @param uFlags Copy flags. 956 961 */ 962 /** @todo r=bird: static? */ 957 963 int ctrlCopyFileToGuest(IGuest *pGuest, const char *pszSource, const char *pszDest, 958 964 const char *pszUserName, const char *pszPassword, … … 1044 1050 bool fCopyRecursive = false; 1045 1051 bool fDryRun = false; 1052 /** @todo r=bird: Use RTGetOpt here, no new code using strcmp-if-switching! */ 1046 1053 1047 1054 /* Iterate through all possible commands (if available). */ … … 1218 1225 uint32_t uMode = 0; 1219 1226 bool fVerbose = false; 1227 /** @todo r=bird: Use RTGetOpt here, no new code using strcmp-if-switching! */ 1220 1228 1221 1229 /* Iterate through all possible commands (if available). */ … … 1253 1261 || !strcmp(a->argv[i], "-m")) 1254 1262 { 1263 /** @todo r=bird: the mode is octal, isn't it? */ 1255 1264 if (i + 1 >= a->argc 1256 1265 || RTStrToUInt32Full(a->argv[i + 1], 10, &uMode) != VINF_SUCCESS) … … 1373 1382 bool fVerbose = false; 1374 1383 1384 /** @todo r=bird: Use RTGetOpt here, no new code using strcmp-if-switching! */ 1375 1385 /* Iterate through all possible commands (if available). */ 1376 1386 bool usageOK = true;
Note:
See TracChangeset
for help on using the changeset viewer.