Changeset 103480 in vbox for trunk/include
- Timestamp:
- Feb 20, 2024 3:21:35 PM (12 months ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/SharedClipboard-transfers.h
r103442 r103480 345 345 typedef struct _SHCLOBJOPENCREATEPARMS 346 346 { 347 /** Path to object to open / create. */ 347 /** Path to object to open / create. 348 * Always stored as UNIX-style paths ('/'). 349 * Backslashes ('\') can be part of a UNIX path though. */ 348 350 char *pszPath; 349 351 /** Size (in bytes) of path to to object. */ … … 421 423 /** Size (in bytes) of the listing path. */ 422 424 uint32_t cbPath; 423 /** Listing path (absolute). If empty or NULL the listing's root path will be opened. */ 425 /** Listing path (absolute). If empty or NULL the listing's root path will be opened. 426 * We always use UNIX-style paths. */ 424 427 char *pszPath; 425 428 } SHCLLISTOPENPARMS; … … 1266 1269 int ShClPathSanitize(char *pszPath, size_t cbPath); 1267 1270 const char *ShClTransferStatusToStr(SHCLTRANSFERSTATUS enmStatus); 1271 int ShClTransferTransformPath(char *pszPath, size_t cbPath); 1268 1272 int ShClTransferValidatePath(const char *pcszPath, bool fMustExist); 1269 1273 int ShClTransferResolvePathAbs(PSHCLTRANSFER pTransfer, const char *pszPath, uint32_t fFlags, char **ppszResolved); -
trunk/include/VBox/HostServices/VBoxClipboardSvc.h
r100367 r103480 990 990 /** pointer, in: Filter string. */ 991 991 HGCMFunctionParameter pvFilter; 992 /** pointer, in: Listing poth. If empty or NULL the listing's root path will be opened. */ 992 /** pointer, in: Listing path. If empty or NULL the listing's root path will be opened. 993 * We always use UNIX-style paths. */ 993 994 HGCMFunctionParameter pvPath; 994 995 /** uint64_t, out: List handle. */ … … 1110 1111 /** uint64_t, out: Object handle. */ 1111 1112 HGCMFunctionParameter uHandle; 1112 /** pointer, in: Absoulte path of object to open/create. */ 1113 /** pointer, in: Absoulte path of object to open/create. 1114 * We always use UNIX-style paths. */ 1113 1115 HGCMFunctionParameter szPath; 1114 1116 /** uint32_t in: Open / Create flags of type SHCL_OBJ_CF_. */
Note:
See TracChangeset
for help on using the changeset viewer.