亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? hxmon.h

?? Amarok是一款在LINUX或其他類UNIX操作系統中運行的音頻播放器軟件。 經過兩年開發后
?? H
?? 第 1 頁 / 共 5 頁
字號:
     *     *  pName - IN - name of the Property whose parent's unique id is to be     *               retrieved     */    STDMETHOD_(UINT32, FindParentIdByName)	(THIS_						const char* pName) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::FindParentIdById     *  Purpose:     *      Returns the id value of the parent node of the Property whose      *  id "ulId" has been passed in. If it fails, a ZERO value is returned.     *     *  ulId - IN - unique id of the Property whose parent's id is to be     *              retrieved     */    STDMETHOD_(UINT32, FindParentIdById)	(THIS_						const UINT32 ulId) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetPropName     *  Purpose:     *      Returns the Property name in the pName char buffer passed     *  as a parameter, given the Property's id "ulId".     *     *  ulId - IN - unique id of the Property whose name is to be retrieved     *  pName - OUT - parameter into which the Property name is going to be     *                returned     */    STDMETHOD(GetPropName)		(THIS_					const UINT32 ulId,					REF(IHXBuffer*) pName) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetId     *  Purpose:     *      Returns the Property's id given the Property name.     *     *  pName - IN - name of the Property whose unique id is to be      *               retrieved     */    STDMETHOD_(UINT32, GetId)		(THIS_					const char* pName) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetPropListOfRoot     *  Purpose:     *      Returns an array of a Properties under the root level of the      *  registry's hierarchy.     *     *  pValues - OUT - list of property name and unique id at the      *                  highest level (root) in the registry     */    STDMETHOD(GetPropListOfRoot) 	(THIS_					REF(IHXValues*) pValues) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetPropListByName     *  Purpose:     *      Returns an array of Properties immediately under the one whose     *  name is passed in "pName".     *     *  pName - IN - name of the Property whose child property list is to be     *               retrieved     *  pValues - OUT - list of property name and unique id under the      *                  Property whose name is in "pName"     */    STDMETHOD(GetPropListByName) 	(THIS_					 const char* pName,					 REF(IHXValues*) pValues) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetPropListById     *  Purpose:     *      Returns an array of Properties immediately under the one whose     *  id is passed in "ulId".     *     *  ulId - IN - unique id of the Property whose child property list is      *              to be retrieved     *  pValues - OUT - list of property name and unique id under the      *                  Property whose is is in "ulId"     */    STDMETHOD(GetPropListById) 	 	(THIS_					 const UINT32 ulId,					 REF(IHXValues*) pValues) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetNumPropsAtRoot     *  Purpose:     *      Returns the number of Properties at the root of the registry.      *     */    STDMETHOD_(INT32, GetNumPropsAtRoot)	(THIS) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetNumPropsByName     *  Purpose:     *      Returns the count of the number of Properties under the one      *  whose name is specified in "pName".     *     *  pName - IN - name of the Property whose number of children is to be     *               retrieved     */    STDMETHOD_(INT32, GetNumPropsByName)	(THIS_						const char* pName) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetNumPropsById     *  Purpose:     *      Returns the count of the number of Properties under the one      *  whose unique id is specified in "ulId".     *     *  ulId - IN - unique id of the Property whose number of children is      *              to be retrieved     */    STDMETHOD_(INT32, GetNumPropsById)		(THIS_						const UINT32 ulId) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::ModifyIntByName     *  Purpose:     *      Changes the INTEGER value in the registry given its Property     *  name "pName" and an amount to change it by.  Modifies the value     *  of the integer in the registry by the amount specified by "nDelta",     *  setting nValue equal to the value after modification.  If the     *  Property is found, it will return HXR_OK, otherwise it     *  returns HXR_FAIL.     *       *  pName - IN - name of the Property whose value is to be retrieved     *  nDelta - IN - amount to modify the named property by     *  nValue - OUT - parameter into which the value of the Property is     *                 going to be returned, after modification     */    STDMETHOD(ModifyIntByName)         (THIS_                                        const char*     pName,					INT32           nDelta,                                        REF(INT32)      nValue) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::ModifyIntById     *  Purpose:     *      Changes the INTEGER value in the registry given its id "ulID"     *  and an amount to change it by.  Modifies the value of the     *  integer in the registry by the amount specified by "nDelta",     *  setting nValue equal to the value after modification.  If the     *  Property is found, it will return HXR_OK, otherwise it     *  returns HXR_FAIL.     *     *  ulId - IN - unique id of the Property whose value is to be modified     *  nDelta - IN - amount to modify the specified property by     *  nValue - OUT - parameter into which the value of the Property is     *                 going to be returned, after modification     */    STDMETHOD(ModifyIntById)           (THIS_                                        const UINT32    id,					INT32           nDelta,                                        REF(INT32)      nValue) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::BoundedModifyIntByName     *  Purpose:     *      Changes the INTEGER value in the registry given its Property name     *  "pName" and an amount to change it by and keeps the modified value      *  within the bounds of the nMin and nMax values. Modifies the value      *  of the integer in the registry by the amount specified by "nDelta",     *  setting nValue equal to the value after modification, if the modified      *  value is >= nMin and <= nMax. If either of these limits are violated      *  the the resulting value stored in the registry is the value of the      *  limit just violated. If the Property is found, it will return HXR_OK,      *  otherwise it returns HXR_FAIL.     *       *  pName - IN - name of the Property whose value is to be retrieved     *  nDelta - IN - amount to modify the named property by     *  nMin - IN - min value that the modified registry prop can have     *              if the modified registry value < nMin then     *                  registry value = nMin     *  nMax - IN - min value that the modified registry prop can have     *              if the modified registry value > nMax then     *                  registry value = nMax     *  nValue - OUT - parameter into which the value of the Property is     *                 going to be returned, after modification     */    STDMETHOD(BoundedModifyIntByName)   (THIS_                                        const char*     pName,					INT32           nDelta,                                        REF(INT32)      nValue,					INT32           nMin=INT_MIN,					INT32           nMax=INT_MAX) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::BoundedModifyIntById     *  Purpose:     *      Changes the INTEGER value in the registry given its id "ulID"     *  and an amount to change it by and keeps the modified value within     *  the bounds of the nMin and nMax values. Modifies the value of the     *  integer in the registry by the amount specified by "nDelta",     *  setting nValue equal to the value after modification, if the modified     *  value is >= nMin and <= nMax. If either of these limits are violated     *  the the resulting value stored in the registry is the value of the     *  limit just violated. If the Property is found, it will return HXR_OK,      *  otherwise it returns HXR_FAIL.     *     *  ulId - IN - unique id of the Property whose value is to be modified     *  nDelta - IN - amount to modify the specified property by     *  nMin - IN - min value that the modified registry prop can have     *              if the modified registry value < nMin then     *                  registry value = nMin     *  nMax - IN - min value that the modified registry prop can have     *              if the modified registry value > nMax then     *                  registry value = nMax     *  nValue - OUT - parameter into which the value of the Property is     *                 going to be returned, after modification     */    STDMETHOD(BoundedModifyIntById)     (THIS_                                        const UINT32    id,					INT32           nDelta,                                        REF(INT32)      nValue,					INT32           nMin=INT_MIN,					INT32           nMax=INT_MAX) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::SetAndReturnIntByName     *  Purpose:     *      Modify a Property's INTEGER value in the registry given the     *  Property's name "pName". If the Property is found, the previous     *  value, prior to setting it, will be assigned to nOldValue.     *  If the Property is found, it will return HXR_OK, otherwise it     *  returns HXR_FAIL.     *     *  pName - IN - name of the Property whose value is to be retrieved     *  nValue - IN - the new value of the Property which is going to be set     *  nOldValue - OUT - parameter into which the previous value of the     *                    Property is returned     */    STDMETHOD(SetAndReturnIntByName)   (THIS_                                        const char*     pName,					INT32           nValue,                                        REF(INT32)      nOldValue) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::SetAndReturnIntById     *  Purpose:     *      Modify a Property's INTEGER value in the registry given the     *  Property's id "ulId". If the id is found, the previous     *  value, prior to setting it, will be assigned to nOldValue.     *  If the Property is found, it will return HXR_OK, otherwise it     *  returns HXR_FAIL.     *       *  pName - IN - name of the Property whose value is to be retrieved     *  nValue - IN - the new value of the Property which is going to be set     *  nOldValue - OUT - parameter into which the previous value of the     *                    Property is returned     */    STDMETHOD(SetAndReturnIntById)     (THIS_                                        const UINT32    id,					INT32           nValue,                                        REF(INT32)      nOldValue) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetIntRefByName     *  Purpose:     *      Retrieve an INTEGER REFERENCE property from the registry given     *  its Property name "pName".  If the Property is found it will return     *  HXR_OK and pValue will be assigned the address of the integer     *  (not the value of the integer, which can be obtained even for     *  INTREFs via the GetIntByxxx methods.)  Otherwise, it returns HXR_FAIL.     *       *  pName - IN - name of the Property whose value is to be retrieved     *  pValue - OUT - the address of the integer value      */    STDMETHOD(GetIntRefByName)         (THIS_                                        const char*     pName,                                        REF(INT32*)     pValue) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetIntRefById     *  Purpose:     *      Retrieve an INTEGER REFERENCE property from the registry given     *  its id "ulId".  If the Property is found it will return     *  HXR_OK and pValue will be assigned the address of the integer     *  (not the value of the integer, which can be obtained even for     *  INTREFs via the GetIntByxxx methods.)  Otherwise, it returns HXR_FAIL.     *       *  pName - IN - name of the Property whose value is to be retrieved     *  pValue - OUT - the address of the integer value      */    STDMETHOD(GetIntRefById)           (THIS_                                        const UINT32    id,                                        REF(INT32*)     pValue) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::AddInt64     *  Purpose:     *      Add an INTEGER property with name in "pName" and value in     *  "iValue" to the registry. The return value is the id to     *  the newly added Property or ZERO if there was an error.     *     *  pName - IN - name of the Property that is going to be added to     *               the registry     *  nValue - IN - integer value of the Property that is going to be     *                added to the registry     */    STDMETHOD_(UINT32, AddInt64)       (THIS_                                        const char*     pName,                                        const INT64     nValue) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetInt64ByName     *  Purpose:     *      Retrieve a 64-bit INTEGER value from the registry given its     *  Property name "pName". If the Property is found, it will return     *  HXR_OK, otherwise it returns HXR_FAIL.     *     *  pName - IN - name of the Property whose value is to be retrieved     *  nValue - OUT - parameter into which the value of the Property is     *                 going to be returned     */    STDMETHOD(GetInt64ByName)          (THIS_                                        const char*     pName,                                        REF(INT64)      nValue) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetInt64ById     *  Purpose:     *      Retrieve a 64-bit INTEGER value from the registry given its id     *  "ulId".  If the Property is found, it will return HXR_OK, otherwise     *  it returns HXR_FAIL.     *     *  ulId - IN - unique id of the Property whose value is to be retrieved     *  nValue - OUT - parameter into which the value of the Property is     *                 going to be returned     */    STDMETHOD(GetInt64ById)            (THIS_                                        const UINT32    ulId,                                        REF(INT64)      nValue) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::SetInt64ByName     *  Purpose:     *      Modify a Property's INTEGER value in the registry given the     *  Property's name "pName". If the value was set, it will return HXR_OK,     *  otherwise it returns HXR_FAIL.     *     *  pName - IN - name of the Property whose value is to be set     *  nValue - IN - the new value of the Property which is going to be set     */    STDMETHOD

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲日本电影在线| 国产精品美女久久久久aⅴ| 丁香婷婷深情五月亚洲| 经典三级在线一区| 久久精品国产免费| 精品一区二区在线视频| 久久精品国产一区二区三区免费看| 亚洲成人福利片| 午夜精品福利一区二区蜜股av| 偷偷要91色婷婷| 美女被吸乳得到大胸91| 精品在线播放午夜| 成人免费视频播放| 一本色道**综合亚洲精品蜜桃冫| 99精品桃花视频在线观看| 色综合久久综合网欧美综合网| 色综合天天综合网国产成人综合天| 日韩你懂的电影在线观看| 日韩视频免费观看高清完整版| 日韩欧美国产wwwww| 精品美女在线播放| 国产精品天天看| 一区二区三区欧美视频| 天天综合网天天综合色| 捆绑变态av一区二区三区| 国产精品66部| 欧美性xxxxx极品少妇| 这里是久久伊人| 国产欧美视频一区二区| 一区二区三区波多野结衣在线观看| 亚洲成人手机在线| 国产一区二区在线观看视频| 97久久超碰国产精品电影| 欧美日韩一区二区在线观看| 久久久久久久久久久久久夜| 一区二区三区四区蜜桃| 黑人精品欧美一区二区蜜桃| 99国产欧美久久久精品| 日韩一区二区三区高清免费看看| 中文幕一区二区三区久久蜜桃| 夜夜嗨av一区二区三区| 精品综合久久久久久8888| 97se亚洲国产综合在线| 日韩欧美一级二级三级久久久| 亚洲视频免费在线观看| 美女视频免费一区| 色www精品视频在线观看| 久久久精品黄色| 免费精品99久久国产综合精品| 一本色道**综合亚洲精品蜜桃冫| 精品第一国产综合精品aⅴ| 亚洲综合激情小说| 成人开心网精品视频| 欧美成人a视频| 同产精品九九九| 一本一道久久a久久精品 | 亚洲女子a中天字幕| 色爱区综合激月婷婷| 亚洲国产成人午夜在线一区| 免费成人在线网站| 欧美电影一区二区| 一区二区三区在线观看动漫| 99精品1区2区| 中文字幕欧美一| 成人精品一区二区三区中文字幕| 久久精品综合网| 国产另类ts人妖一区二区| 91精品国产一区二区三区| 亚洲综合一区二区三区| 色综合久久综合| 亚洲柠檬福利资源导航| 色中色一区二区| 亚洲精品视频免费看| 日本精品视频一区二区| 一区二区三区美女| 色婷婷综合五月| 亚洲狠狠爱一区二区三区| 欧美影院一区二区三区| 亚洲一区二区三区四区在线免费观看| 91色在线porny| 一区二区三区精品在线观看| 色婷婷精品大在线视频| 亚洲国产乱码最新视频| 欧美日本一区二区三区四区| 日韩电影一区二区三区四区| 日韩欧美在线不卡| 国产成人在线网站| 国产精品久久久久aaaa樱花| 欧美精品在线观看播放| 日韩av电影天堂| 精品成人一区二区| 成人国产精品视频| 一区二区三区日韩精品| 欧美巨大另类极品videosbest | 日韩三级伦理片妻子的秘密按摩| 日韩高清不卡在线| 精品伦理精品一区| 成人短视频下载| jlzzjlzz亚洲女人18| 91在线免费看| 欧美精品乱人伦久久久久久| 欧美性极品少妇| 日韩欧美一区中文| 国产精品亲子伦对白| 亚洲成人免费观看| 欧美一区二区精品在线| 亚洲一区二区三区爽爽爽爽爽 | 欧美三区在线视频| 美女在线视频一区| 中文字幕第一区综合| 欧美日韩一区视频| 粉嫩aⅴ一区二区三区四区五区| 亚洲精品国产第一综合99久久| 制服.丝袜.亚洲.中文.综合| 国产大陆精品国产| 亚洲高清免费视频| 国产午夜精品一区二区三区嫩草| 色综合久久精品| 国产精品亚洲午夜一区二区三区| 亚洲综合另类小说| 国产视频一区在线观看| 欧美日韩精品一区二区三区蜜桃 | 欧美剧情片在线观看| www.欧美色图| 精品在线观看免费| 亚洲午夜精品网| 国产精品美女www爽爽爽| 日韩欧美国产午夜精品| 日本韩国一区二区三区| 国产成人aaa| 麻豆精品蜜桃视频网站| 亚洲综合色丁香婷婷六月图片| 国产日韩亚洲欧美综合| 日韩一级片在线播放| 欧美亚洲丝袜传媒另类| 91在线一区二区三区| 国产91丝袜在线观看| 久久99久久精品| 三级不卡在线观看| 亚洲精品国产品国语在线app| 欧美国产禁国产网站cc| 久久一区二区三区国产精品| 日韩亚洲欧美一区二区三区| 欧美日韩精品系列| 欧美视频一区在线| 色天天综合久久久久综合片| av不卡免费电影| 99国产精品99久久久久久| av在线播放一区二区三区| 处破女av一区二区| 欧美午夜免费电影| 在线精品视频一区二区| 色av一区二区| 欧美三级韩国三级日本一级| 欧美日本一区二区三区| 欧美精品v国产精品v日韩精品| 欧美性淫爽ww久久久久无| 欧美在线视频不卡| 6080亚洲精品一区二区| 51午夜精品国产| 精品剧情在线观看| 337p粉嫩大胆噜噜噜噜噜91av | 5月丁香婷婷综合| 日韩欧美不卡一区| 久久久不卡网国产精品一区| 国产亚洲短视频| 亚洲色图制服诱惑| 亚洲大片免费看| 国产一区二区三区久久久| 成人白浆超碰人人人人| 欧美在线制服丝袜| 日韩免费福利电影在线观看| 2023国产精品| 一区二区三区四区乱视频| 日韩精品1区2区3区| 国产精品一区二区视频| 不卡av在线免费观看| 色视频成人在线观看免| 日韩免费视频线观看| 国产精品国模大尺度视频| 亚洲一二三四区| 国产美女精品一区二区三区| 91网站视频在线观看| 日韩视频在线一区二区| 国产精品久久二区二区| 亚洲成精国产精品女| 国产成人丝袜美腿| 欧美午夜影院一区| 国产午夜三级一区二区三| 亚洲综合免费观看高清完整版| 国产一区二区在线观看免费| 在线免费观看日本欧美| 久久久久久久久久看片| 天天av天天翘天天综合网 | 加勒比av一区二区| 色婷婷av一区| 国产亚洲精品免费| 三级久久三级久久久| 色综合av在线| 欧美国产日韩一二三区|