com32.inc
来自「一个用纯汇编 写的操作系统 源代码 是用 TASM 编译器写的」· INC 代码 · 共 51 行
INC
51 行
; Macroinstructions for interfacing the COM (Component Object Model) classes
macro cominvk object,proc,[arg]
{ common
if ~ arg eq
reverse
pushd arg
common
end if
mov eax,[object]
push eax
mov eax,[eax]
call [eax+object#.#proc] }
macro comcall handle,object,proc,[arg]
{ common
if ~ arg eq
reverse
pushd arg
common
end if
if handle eqtype eax | handle eqtype 0
push handle
local ..handle
label ..handle at handle
mov eax,[..handle]
else
mov eax,handle
push eax
mov eax,[eax]
end if
call [eax+object#.#proc] }
macro interface name,[proc]
{ common
struc name \{
match any, fields@struct \\{ fields@struct equ fields@struct,.,name, \\}
match , fields@struct \\{ . dd ?
virtual at 0
forward
.#proc dd ?
common
end virtual \\} \}
virtual at 0
forward
name#.#proc dd ?
common
end virtual }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?