⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uiextension.h

📁 brew平台关于扩展编写的一个简单的例子
💻 H
字号:
#ifndef UIEXTENSION_H
#define UIEXTENSION_H
#include "AEE.h"			// Standard AEE definitions
#include "AEEShell.h"		// AEE Shell Services
#include "AEEStdlib.h"		// BREW's standard library
#include "UIExtension.bid"

// Extension Class typedef

typedef struct _IUIExtension IUIExtension;

//********************************************************************************************************************************
//
// IMyExtension Interface Definition
//
//********************************************************************************************************************************
QINTERFACE(IUIExtension)
{
	DECLARE_IBASE(IUIExtension)
	int (*CreateIDisplay)(IUIExtension* po,IShell *pIShell);
	void (*Show)(IUIExtension* po,char* pBuffer,int len);
};

#define IUIExtension_AddRef(p)				GET_PVTBL(p,IUIExtension)->AddRef(p)
#define IUIExtension_Release(p)				GET_PVTBL(p,IUIExtension)->Release(p)
#define IUIExtension_Show(p,pb,l)             GET_PVTBL(p,IUIExtension)->Show(p,pb,l)

#endif /*UIEXTENSION_H*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -