- Timestamp:
- Sep 29, 2008 4:11:14 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37164
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxVMInfo.cpp
r12734 r12810 112 112 Assert(pCtx); 113 113 114 /* @todo Temporary solution: Zap all values which are not valid anymore when VM goes down (reboot/shutdown).114 /** @todo Temporary solution: Zap all values which are not valid anymore when VM goes down (reboot/shutdown). 115 115 * Needs to be replaced with "temporary properties" later. */ 116 char szPropPath [_MAX_PATH+1] = {0};117 char*pPtr = &szPropPath[0];118 116 119 117 vboxVMInfoWriteProp(pCtx, "GuestInfo/OS/LoggedInUsersList", ""); 120 118 vboxVMInfoWritePropInt(pCtx, "GuestInfo/OS/LoggedInUsers", 0); 121 119 122 RTStrPrintf(szPropPath, sizeof(szPropPath), "/VirtualBox/GuestInfo/Net/*");123 VbglR3GuestPropDel Tree(pCtx->iInfoSvcClientID, &pPtr, 1);120 const char *apszPat[1] = { "/VirtualBox/GuestInfo/Net/*" }; 121 VbglR3GuestPropDelSet(pCtx->iInfoSvcClientID, &apszPat[0], RT_ELEMENTS(apszPat)); 124 122 vboxVMInfoWritePropInt(pCtx, "GuestInfo/Net/Count", 0); 125 123 -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGuestProp.cpp
r12722 r12810 508 508 * uninitialised 509 509 * 510 * @param papszPatterns The patterns against which the properties are 511 * matched. Pass NULL if everything should be matched. 512 * @param cPatterns The number of patterns in @a papszPatterns. 0 means 513 * match everything. 514 * @param ppHandle where the handle for continued enumeration is stored 515 * on success. This must be freed with 516 * VbglR3GuestPropEnumFree when it is no longer needed. 517 * @param ppszName Where to store the first property name on success. 518 * Should not be freed. 519 * @param ppszValue Where to store the first property value on success. 520 * Should not be freed. 521 * @param ppszValue Where to store the first timestamp value on success. 522 * @param ppszFlags Where to store the first flags value on success. 523 * Should not be freed. 510 * @param u32ClientId The client id returned by VbglR3InfoSvcConnect(). 511 * @param papszPatterns The patterns against which the properties are 512 * matched. Pass NULL if everything should be matched. 513 * @param cPatterns The number of patterns in @a papszPatterns. 0 means 514 * match everything. 515 * @param ppHandle where the handle for continued enumeration is stored 516 * on success. This must be freed with 517 * VbglR3GuestPropEnumFree when it is no longer needed. 518 * @param ppszName Where to store the first property name on success. 519 * Should not be freed. 520 * @param ppszValue Where to store the first property value on success. 521 * Should not be freed. 522 * @param ppszValue Where to store the first timestamp value on success. 523 * @param ppszFlags Where to store the first flags value on success. 524 * Should not be freed. 525 * 526 * @todo Make papszPatterns char const * const *, and cPatterns size_t (so we 527 * can use RT_ELEMENTS without getting warnings on Windows). 528 * Most of the returns should also be made char const * to discourage 529 * changes and encourage compiler optimizations. 524 530 */ 525 531 VBGLR3DECL(int) VbglR3GuestPropEnum(uint32_t u32ClientId, … … 613 619 * set to NULL if there are no more properties to 614 620 * enumerate. This pointer should not be freed. 621 * 622 * @todo return char const *. 615 623 */ 616 624 VBGLR3DECL(int) VbglR3GuestPropEnumNext(PVBGLR3GUESTPROPENUM pHandle, … … 652 660 } 653 661 654 /** 655 * Deletes a key (matching pattern) including its children. 656 * 657 * @returns VBox status code. 658 */ 659 VBGLR3DECL(int) VbglR3GuestPropDelTree(uint32_t u32ClientId, 660 char **papszPatterns, 661 int cPatterns) 662 { 663 PVBGLR3GUESTPROPENUM pHandle = NULL; 664 int rc = VINF_SUCCESS; 665 666 char* pszName = NULL; 667 char* pszValue = NULL; 668 uint64_t pu64Timestamp = 0; 669 char* pszFlags = NULL; 670 671 rc = VbglR3GuestPropEnum(u32ClientId, 672 papszPatterns, 673 cPatterns, 674 &pHandle, 675 &pszName, 676 &pszValue, 677 &pu64Timestamp, 678 &pszFlags); 679 680 while (RT_SUCCESS(rc) && (pszName != NULL)) 662 663 /** 664 * Deletes a set of keys. 665 * 666 * The set is specified in the same way as for VbglR3GuestPropEnum. 667 * 668 * @returns VBox status code. Stops on first failure. 669 * See also VbglR3GuestPropEnum. 670 * 671 * @param u32ClientId The client id returned by VbglR3InfoSvcConnect(). 672 * @param papszPatterns The patterns against which the properties are 673 * matched. Pass NULL if everything should be matched. 674 * @param cPatterns The number of patterns in @a papszPatterns. 0 means 675 * match everything. 676 */ 677 VBGLR3DECL(int) VbglR3GuestPropDelSet(uint32_t u32ClientId, 678 const char * const *papszPatterns, 679 size_t cPatterns) 680 { 681 PVBGLR3GUESTPROPENUM pHandle; 682 char *pszName; 683 char *pszValue; 684 uint64_t pu64Timestamp; 685 char *pszFlags; 686 int rc = VbglR3GuestPropEnum(u32ClientId, 687 (char **)papszPatterns, /** @todo fix this cast. */ 688 cPatterns, 689 &pHandle, 690 &pszName, 691 &pszValue, 692 &pu64Timestamp, 693 &pszFlags); 694 695 while (RT_SUCCESS(rc) && pszName) 681 696 { 682 697 rc = VbglR3GuestPropWriteValue(u32ClientId, pszName, NULL); 683 if (!RT_SUCCESS(rc))698 if (!RT_SUCCESS(rc)) 684 699 break; 685 700 … … 694 709 return rc; 695 710 } 711
Note:
See TracChangeset
for help on using the changeset viewer.