- Timestamp:
- Oct 10, 2008 2:45:34 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 37709
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestProperties/service.cpp
r13159 r13179 214 214 int getPropValue(uint32_t cParms, VBOXHGCMSVCPARM paParms[]); 215 215 int getProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[]); 216 int setProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[] );217 int delProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[] );216 int setProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[], bool notify); 217 int delProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[], bool notify); 218 218 int enumProps(uint32_t cParms, VBOXHGCMSVCPARM paParms[]); 219 219 void notifyHost(const char *pszProperty); … … 446 446 * @thread HGCM 447 447 */ 448 int Service::setProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[] )448 int Service::setProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[], bool notify) 449 449 { 450 450 int rc = VINF_SUCCESS; … … 524 524 if (RT_SUCCESS(rc)) 525 525 { 526 notifyHost(pszName); 526 if (notify) 527 notifyHost(pszName); 527 528 Log2(("Set string %s, rc=%Rrc, value=%s\n", pszName, rc, pszValue)); 528 529 } … … 541 542 * @thread HGCM 542 543 */ 543 int Service::delProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[] )544 int Service::delProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[], bool notify) 544 545 { 545 546 int rc = VINF_SUCCESS; … … 559 560 { 560 561 CFGMR3RemoveValue(mpValueNode, pszName); 561 notifyHost(pszName); 562 if (notify) 563 notifyHost(pszName); 562 564 } 563 565 LogFlowThisFunc(("rc = %Rrc\n", rc)); … … 879 881 case SET_PROP: 880 882 LogFlowFunc(("SET_PROP\n")); 881 rc = setProperty(cParms, paParms );883 rc = setProperty(cParms, paParms, true); 882 884 break; 883 885 … … 885 887 case SET_PROP_VALUE: 886 888 LogFlowFunc(("SET_PROP_VALUE\n")); 887 rc = setProperty(cParms, paParms );889 rc = setProperty(cParms, paParms, true); 888 890 break; 889 891 … … 891 893 case DEL_PROP: 892 894 LogFlowFunc(("DEL_PROP\n")); 893 rc = delProperty(cParms, paParms );895 rc = delProperty(cParms, paParms, true); 894 896 break; 895 897 … … 972 974 case SET_PROP_HOST: 973 975 LogFlowFunc(("SET_PROP_HOST\n")); 974 rc = setProperty(cParms, paParms );976 rc = setProperty(cParms, paParms, false); 975 977 break; 976 978 … … 978 980 case SET_PROP_VALUE_HOST: 979 981 LogFlowFunc(("SET_PROP_VALUE_HOST\n")); 980 rc = setProperty(cParms, paParms );982 rc = setProperty(cParms, paParms, false); 981 983 break; 982 984 … … 984 986 case DEL_PROP_HOST: 985 987 LogFlowFunc(("DEL_PROP_HOST\n")); 986 rc = delProperty(cParms, paParms );988 rc = delProperty(cParms, paParms, false); 987 989 break; 988 990
Note:
See TracChangeset
for help on using the changeset viewer.