mirror of
https://github.com/rbmm/SC
synced 2026-06-08 17:03:41 +00:00
19 lines
270 B
NASM
19 lines
270 B
NASM
.686
|
|
|
|
.MODEL FLAT
|
|
|
|
.code
|
|
|
|
; void __stdcall OnApc(unsigned long,unsigned long,void *)
|
|
extern ?OnApc@@YGXKKPAX@Z : PROC
|
|
|
|
; void __stdcall epASM()
|
|
?epASM@@YGXXZ proc
|
|
jmp ?OnApc@@YGXKKPAX@Z
|
|
?epASM@@YGXXZ endp
|
|
|
|
include <../scentry/nobase.x86.inc>
|
|
|
|
include <imp.x86.asm>
|
|
|
|
end |