Changeset 93015 in vbox for trunk/include
- Timestamp:
- Dec 17, 2021 11:44:08 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 149004
- Location:
- trunk/include/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r92734 r93015 993 993 /** The specified string / bytes buffer was to small. Specify a larger one and retry. */ 994 994 #define VERR_CFGM_NOT_ENOUGH_SPACE (-2109) 995 /** The value is not a zero terminated password string. */ 996 #define VERR_CFGM_NOT_PASSWORD (-2110) 995 997 /** The path of a new node contained slashes or was empty. */ 996 998 #define VERR_CFGM_INVALID_NODE_PATH (-2160) -
trunk/include/VBox/vmm/cfgm.h
r85121 r93015 48 48 CFGMVALUETYPE_STRING, 49 49 /** Bytestring value. */ 50 CFGMVALUETYPE_BYTES 50 CFGMVALUETYPE_BYTES, 51 /** Password value, same as String but hides the content in dump. */ 52 CFGMVALUETYPE_PASSWORD 51 53 } CFGMVALUETYPE; 52 54 /** Pointer to configuration manager property type. */ … … 112 114 VMMR3DECL(int) CFGMR3InsertStringW(PCFGMNODE pNode, const char *pszName, PCRTUTF16 pwszValue); 113 115 VMMR3DECL(int) CFGMR3InsertBytes(PCFGMNODE pNode, const char *pszName, const void *pvBytes, size_t cbBytes); 116 VMMR3DECL(int) CFGMR3InsertPassword(PCFGMNODE pNode, const char *pszName, const char *pszString); 117 VMMR3DECL(int) CFGMR3InsertPasswordN(PCFGMNODE pNode, const char *pszName, const char *pszString, size_t cchString); 114 118 VMMR3DECL(int) CFGMR3InsertValue(PCFGMNODE pNode, PCFGMLEAF pValue); 115 119 VMMR3DECL(int) CFGMR3RemoveValue(PCFGMNODE pNode, const char *pszName); … … 148 152 VMMR3DECL(int) CFGMR3QueryString( PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString); 149 153 VMMR3DECL(int) CFGMR3QueryStringDef( PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString, const char *pszDef); 154 VMMR3DECL(int) CFGMR3QueryPassword( PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString); 155 VMMR3DECL(int) CFGMR3QueryPasswordDef( PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString, const char *pszDef); 150 156 VMMR3DECL(int) CFGMR3QueryBytes( PCFGMNODE pNode, const char *pszName, void *pvData, size_t cbData); 151 157 -
trunk/include/VBox/vmm/pdmdev.h
r92527 r93015 3049 3049 DECLR3CALLBACKMEMBER(int, pfnCFGMQueryString,( PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString)); 3050 3050 DECLR3CALLBACKMEMBER(int, pfnCFGMQueryStringDef,( PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString, const char *pszDef)); 3051 DECLR3CALLBACKMEMBER(int, pfnCFGMQueryPassword,( PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString)); 3052 DECLR3CALLBACKMEMBER(int, pfnCFGMQueryPasswordDef,( PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString, const char *pszDef)); 3051 3053 DECLR3CALLBACKMEMBER(int, pfnCFGMQueryBytes,( PCFGMNODE pNode, const char *pszName, void *pvData, size_t cbData)); 3052 3054 DECLR3CALLBACKMEMBER(int, pfnCFGMQueryU64,( PCFGMNODE pNode, const char *pszName, uint64_t *pu64)); -
trunk/include/VBox/vmm/pdmdrv.h
r91972 r93015 1016 1016 DECLR3CALLBACKMEMBER(int, pfnCFGMQueryString,( PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString)); 1017 1017 DECLR3CALLBACKMEMBER(int, pfnCFGMQueryStringDef,( PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString, const char *pszDef)); 1018 DECLR3CALLBACKMEMBER(int, pfnCFGMQueryPassword,( PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString)); 1019 DECLR3CALLBACKMEMBER(int, pfnCFGMQueryPasswordDef,( PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString, const char *pszDef)); 1018 1020 DECLR3CALLBACKMEMBER(int, pfnCFGMQueryBytes,( PCFGMNODE pNode, const char *pszName, void *pvData, size_t cbData)); 1019 1021 DECLR3CALLBACKMEMBER(int, pfnCFGMQueryU64,( PCFGMNODE pNode, const char *pszName, uint64_t *pu64));
Note:
See TracChangeset
for help on using the changeset viewer.