?? server.idl
字號:
//
// Server.idl - IDL source for Server.dll
//
// MIDL generates proxy/stub code and a type library from this file.
//
//
// Interface descriptions
//
import "unknwn.idl" ;
// Interface IX
[
object,
uuid(32BB8328-B41B-11CF-A6BB-0080C7B2D682),
helpstring("IX Interface"),
pointer_default(unique)
]
interface IX : IUnknown
{
HRESULT Tick([in]int delta) ;
HRESULT SetStartCount([in] long NewCount) ;
HRESULT GetCurrentCount([out, retval] long* pCurrentCount) ;
HRESULT Left() ;
HRESULT Right() ;
HRESULT InRightHand([out, retval] BOOL* pbool) ;
} ;
//
// Component description
//
[
uuid(D3011EE3-B997-11CF-A6BB-0080C7B2D682),
version(1.0),
helpstring("Inside Com, Chapter 12 Ex 2 1.0 Type Library")
]
library ServerLib
{
importlib("stdole32.tlb") ;
// Component
[
uuid(0C092C2E-882C-11CF-A6BB-0080C7B2D682),
helpstring("Component Class")
]
coclass Component
{
[default] interface IX ;
} ;
} ;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -