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

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

?? hxmon.h

?? Amarok是一款在LINUX或其他類UNIX操作系統中運行的音頻播放器軟件。 經過兩年開發后
?? H
?? 第 1 頁 / 共 5 頁
字號:
 * *      1) Provide atomic update methods *      2) Provide INT64 support *      3) Provide access to INTREF pointers * *      All operations occur atomically, ensuring that multiple users of the *      registry do not interfere with each other, even on multi-CPU systems. *      Note, this is essentially a superset of IHXRegistry. * *  IID_IHXRegistry2 * *	{00000608-0901-11d1-8B06-00A024406D59} * */DEFINE_GUID(IID_IHXRegistry2, 0x00000608, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 			0xa0, 0x24, 0x40, 0x6d, 0x59);#undef  INTERFACE#define INTERFACE IHXRegistry2DECLARE_INTERFACE_(IHXRegistry2, IUnknown){    /*     *	IUnknown methods     */    STDMETHOD(QueryInterface)	(THIS_				REFIID riid,				void** ppvObj) PURE;    STDMETHOD_(ULONG32,AddRef)	(THIS) PURE;    STDMETHOD_(ULONG32,Release)	(THIS) PURE;    /*     *	IHXRegistry2 methods     */    /************************************************************************     *  Method:     *      IHXRegistry2::CreatePropWatch     *  Purpose:     *      Create a new IHXPropWatch object which can then be queried for      *  the right kind of IHXPropWatch object.     *     *  pPropWatch - OUT - returns a new addref'ed IHXPropWatch object      */    STDMETHOD(CreatePropWatch)		(THIS_					REF(IHXPropWatch*) pPropWatch) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::AddComp     *  Purpose:     *      Add a COMPOSITE property to the registry and return its ID     *  if successful. It returns ZERO (0) if an error occurred     *  during the operation.     *     *  pName - IN - name of the Property that is going to be added to      *               the registry     */    STDMETHOD_(UINT32, AddComp)		(THIS_					const char*	pName) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::AddInt     *  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, AddInt)		(THIS_					const char*	pName, 					const INT32	nValue) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetIntByName     *  Purpose:     *      Retreive an 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(GetIntByName)		(THIS_					const char*	pName,					REF(INT32)	nValue) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetIntById     *  Purpose:     *      Retreive an 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(GetIntById)		(THIS_					const UINT32	ulId,					REF(INT32)	nValue) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::SetIntByName     *  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(SetIntByName)		(THIS_					const char*	pName, 					const INT32	nValue) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::SetIntById     *  Purpose:     *      Modify a Property's INTEGER value in the registry given the     *  its id "id". If the value was set, it will return HXR_OK, otherwise      *  it returns HXR_FAIL.     *     *  ulId - IN - unique id of the Property whose value is to be set     *  nValue - IN - the new value of the Property which is going to be set     */    STDMETHOD(SetIntById)		(THIS_					const UINT32	id,					const INT32	nValue) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::AddStr     *  Purpose:     *      Add an STRING property with name in "pName" and value in      *  "pValue" to the registry and return its ID if successful.     *  It returns ZERO (0) if an error occurred during the operation.     *     *  pName - IN - name of the Property that is going to be added to      *               the registry     *  pValue - IN - buffer value of the Property that is going to be      *                added to the registry     */    STDMETHOD_(UINT32, AddStr)		(THIS_					const char*	pName, 					IHXBuffer*	pValue) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetStrByName     *  Purpose:     *      Retreive an STRING 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     *  pValue - OUT - parameter into which the value of the Property is      *                 going to be returned     */    STDMETHOD(GetStrByName)		(THIS_					const char*	 pName,					REF(IHXBuffer*) pValue) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetStrById     *  Purpose:     *      Retreive an STRING 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     *  pValue - OUT - parameter into which the value of the Property is      *                 going to be returned     */    STDMETHOD(GetStrById)		(THIS_					const UINT32	 ulId,					REF(IHXBuffer*) pValue) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::SetStrByName     *  Purpose:     *      Modify a Property's STRING 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     *  pValue - IN - the new value of the Property which is going to be set     */    STDMETHOD(SetStrByName)		(THIS_					const char*	pName, 					IHXBuffer*	pValue) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::SetStrById     *  Purpose:     *      Modify a Property's STRING value in the registry given the     *  its id "ulId". If the value was set, it will return HXR_OK,      *  otherwise it returns HXR_FAIL.     *     *  ulId - IN - unique id of the Property whose value is to be set     *  pValue - IN - the new value of the Property which is going to be set     */    STDMETHOD(SetStrById)		(THIS_					const UINT32	ulId,					IHXBuffer*	pValue) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::AddBuf     *  Purpose:     *      Add an BUFFER property with name in "pName" and value in      *  "pValue" to the registry  and return its ID if successful.     *  It returns ZERO (0) if an error occurred during the operation.     *     *  pName - IN - name of the Property that is going to be added to      *               the registry     *  pValue - IN - buffer value of the Property that is going to be      *                added to the registry     */    STDMETHOD_(UINT32, AddBuf)		(THIS_					const char*	pName, 					IHXBuffer*	pValue) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetBufByName     *  Purpose:     *      Retreive the BUFFER 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     *  pValue - OUT - parameter into which the value of the Property is      *                 going to be returned     */    STDMETHOD(GetBufByName)		(THIS_					const char*	 pName,					REF(IHXBuffer*) pValue) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetBufById     *  Purpose:     *      Retreive the BUFFER 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     *  pValue - OUT - parameter into which the value of the Property is      *                 going to be returned     */    STDMETHOD(GetBufById)		(THIS_					const UINT32	 ulId,					REF(IHXBuffer*) pValue) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::SetBufByName     *  Purpose:     *      Modify a Property's BUFFER 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     *  pValue - IN - the new value of the Property which is going to be set     */    STDMETHOD(SetBufByName)		(THIS_					const char*	pName, 					IHXBuffer*	pValue) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::SetBufById     *  Purpose:     *      Modify a Property's BUFFER in the registry given its id "ulId".      *  If the value was set, it will return HXR_OK, otherwise it returns      *  HXR_FAIL.     *     *  ulId - IN - unique id of the Property whose value is to be set     *  pValue - IN - the new value of the Property which is going to be set     */    STDMETHOD(SetBufById)		(THIS_					const UINT32	ulId,					IHXBuffer*	pValue) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::AddIntRef     *  Purpose:     *      Add an INTEGER REFERENCE property with name in "pName" and      *  value in "iValue" to the registry. This property allows the user     *  to modify its contents directly, without having to go through the     *  registry.  The Property's id is returned if successful.     *  It returns ZERO (0) if an error occurred during the operation.     *     *  pName - IN - name of the Property that is going to be added to      *               the registry     *  pValue - IN - the pointer of the integer value is what gets stored     *                in the registry as the Interger Reference Property's      *                value     */    STDMETHOD_(UINT32, AddIntRef)	(THIS_					const char*	pName, 					INT32*		pValue) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::DeleteByName     *  Purpose:     *      Delete a Property from the registry using its name "pName".     *     *  pName - IN - name of the Property that is going to be deleted     */    STDMETHOD_(UINT32, DeleteByName)	(THIS_					const char*	pName) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::DeleteById     *  Purpose:     *      Delete a Property from the registry using its id "ulId".     *     *  ulId - IN - unique id of the Property that is going to be deleted     */    STDMETHOD_(UINT32, DeleteById)	(THIS_					const UINT32	ulId) PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetTypeByName     *  Purpose:     *      Returns the datatype of the Property given its name "pName".     *     *  pName - IN - name of the Property whose type is to be retrieved     */    STDMETHOD_(HXPropType, GetTypeByName)	(THIS_						const char* pName) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::GetTypeById     *  Purpose:     *      Returns the datatype of the Property given its its id "ulId".     *     *  ulId - IN - unique id of the Property whose type is to be retrieved     */    STDMETHOD_(HXPropType, GetTypeById)	(THIS_						const UINT32 ulId) const PURE;    /************************************************************************     *  Method:     *      IHXRegistry2::FindParentIdByName     *  Purpose:     *      Returns the id value of the parent node of the Property whose      *  name "pName" has been passed in. If it fails, a ZERO value is      *  returned.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩欧美你懂的| 中文字幕欧美日韩一区| 亚洲伦理在线精品| 丰满放荡岳乱妇91ww| 国产婷婷精品av在线| 国产一区二区三区最好精华液| 日韩一区二区在线免费观看| 欧美aa在线视频| 欧美电影免费提供在线观看| 久久精品国产亚洲高清剧情介绍| 欧美一卡二卡三卡四卡| 美女脱光内衣内裤视频久久影院| 日韩美女视频在线| 久久91精品国产91久久小草| 亚洲精品一线二线三线| 国产成人在线免费| 国产精品久久久久久久午夜片| 成人av一区二区三区| 最新热久久免费视频| 色爱区综合激月婷婷| 亚洲在线视频一区| 欧美精品乱码久久久久久按摩| 天堂久久一区二区三区| 日韩免费高清av| 国产凹凸在线观看一区二区| 日韩久久一区二区| 欧美日韩视频在线一区二区| 美女脱光内衣内裤视频久久网站 | 国产成人av福利| 中文成人av在线| 日本道免费精品一区二区三区| 性久久久久久久| 日韩三级精品电影久久久| 国内久久精品视频| 中文字幕一区不卡| 欧美日韩亚洲综合| 久久av老司机精品网站导航| 国产午夜亚洲精品午夜鲁丝片 | 91成人国产精品| 偷拍亚洲欧洲综合| 精品sm捆绑视频| 成人动漫av在线| 香蕉久久夜色精品国产使用方法 | 4438成人网| 国产成人免费视频网站| 一区二区三区色| 精品久久久久99| 91丨porny丨在线| 美女尤物国产一区| 国产精品国产三级国产三级人妇| 欧美性大战久久| 狠狠色2019综合网| 亚洲欧美一区二区三区孕妇| 91麻豆精品91久久久久久清纯 | 国产不卡视频在线播放| 亚洲乱码中文字幕| 欧美白人最猛性xxxxx69交| 成人福利在线看| 天天免费综合色| 国产欧美日韩亚州综合 | av亚洲精华国产精华精华| 亚洲午夜在线观看视频在线| 2023国产精华国产精品| 色婷婷久久久亚洲一区二区三区| 天堂影院一区二区| 国产精品久久久久影院老司| 欧美日韩国产一二三| 国产成人精品1024| 日本成人中文字幕| 亚洲欧美一区二区三区极速播放| 日韩欧美二区三区| 91麻豆自制传媒国产之光| 精品亚洲成av人在线观看| 亚洲一区二区偷拍精品| 国产午夜亚洲精品午夜鲁丝片| 欧美日韩一区二区电影| thepron国产精品| 蜜臀91精品一区二区三区 | 日韩和欧美一区二区| 国产精品美女久久久久aⅴ国产馆 国产精品美女久久久久av爽李琼 国产精品美女久久久久高潮 | 亚洲狼人国产精品| 久久久精品中文字幕麻豆发布| 欧美日韩精品一区二区三区四区| 高清国产一区二区三区| 日韩电影在线观看网站| 一区二区三区在线视频免费| 久久九九国产精品| 7777精品伊人久久久大香线蕉完整版| youjizz国产精品| 国产在线精品一区二区夜色 | 国产精品你懂的在线欣赏| 日韩天堂在线观看| 欧美日韩三级在线| 91影院在线观看| 丁香亚洲综合激情啪啪综合| 蜜桃传媒麻豆第一区在线观看| 亚洲在线视频一区| 亚洲免费在线电影| 国产精品久久久久永久免费观看 | 久久女同互慰一区二区三区| 在线成人高清不卡| 色88888久久久久久影院按摩 | 欧美亚洲一区三区| 不卡的av电影| 国产ts人妖一区二区| 国产一区美女在线| 美女视频免费一区| 天使萌一区二区三区免费观看| 自拍偷自拍亚洲精品播放| 欧美国产在线观看| 国产亚洲精品中文字幕| 久久久亚洲精品一区二区三区 | 国产精品色一区二区三区| 337p粉嫩大胆色噜噜噜噜亚洲| 欧美一区二区在线播放| 777亚洲妇女| 欧美精品一卡二卡| 欧美美女直播网站| 3751色影院一区二区三区| 欧美精品黑人性xxxx| 欧美日韩国产在线观看| 欧美喷潮久久久xxxxx| 欧美无砖砖区免费| 欧美视频在线观看一区二区| 日本精品一区二区三区高清| 99国产精品国产精品毛片| 91影院在线免费观看| 色综合久久综合| 91久久精品一区二区二区| 在线观看亚洲精品| 欧美性受xxxx| 欧美日韩免费电影| 欧美一级精品大片| 日韩精品一区二区三区四区视频| 欧美一区二区观看视频| 欧美成人艳星乳罩| 久久久综合九色合综国产精品| 久久亚洲精品小早川怜子| 久久久噜噜噜久久人人看| 国产人成亚洲第一网站在线播放 | 精品国产一区二区三区不卡| 精品理论电影在线| 国产午夜精品一区二区三区视频| 久久精品视频一区| 中文字幕在线不卡| 一区二区三区在线观看欧美 | 蜜臀av一区二区三区| 国产中文一区二区三区| 成人午夜av电影| 91老师国产黑色丝袜在线| 在线观看精品一区| 欧美久久久久中文字幕| 欧美本精品男人aⅴ天堂| 日本一区二区三区dvd视频在线| 亚洲同性同志一二三专区| 亚洲午夜私人影院| 理论片日本一区| 懂色av一区二区夜夜嗨| 色欧美88888久久久久久影院| 欧美日韩中文字幕精品| 精品理论电影在线观看 | 精品国产电影一区二区| 日本一区二区三区高清不卡| 一区二区三区蜜桃| 蜜桃精品视频在线| 成人av免费网站| 色婷婷狠狠综合| 欧美电影免费观看高清完整版| 久久久国产精品不卡| 亚洲精品国产视频| 秋霞影院一区二区| 不卡视频在线看| 欧美老女人第四色| 国产日韩欧美不卡| 亚洲一区二三区| 久久99日本精品| 91色porny在线视频| 日韩欧美精品在线视频| 国产精品狼人久久影院观看方式| 亚洲一区二区三区在线看| 紧缚奴在线一区二区三区| aaa欧美色吧激情视频| 欧美日韩三级一区二区| 国产欧美精品国产国产专区 | 久久久精品黄色| 亚洲一区中文在线| 国产精品911| 欧美日韩视频一区二区| 国产清纯美女被跳蛋高潮一区二区久久w | 日韩美一区二区三区| 亚洲乱码中文字幕综合| 久久99精品久久久| 91成人免费在线| 日本一区二区在线不卡| 日本一道高清亚洲日美韩| 99久久精品国产网站| 欧美成人一区二区三区| 亚洲制服丝袜在线| 成人国产在线观看| 亚洲精品一区在线观看|