?? uiextension.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 + -