mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
19 lines
362 B
Plaintext
19 lines
362 B
Plaintext
|
|
;--- a qualified type in a PROC's parameter list
|
|
;--- may define a "forward" reference to a type (typekind=TYPE_NONE)
|
|
;--- This symbol cannot be redefined
|
|
|
|
.386
|
|
.model flat, stdcall
|
|
option casemap:none
|
|
|
|
.code
|
|
|
|
p1 proc a1:ptr IMAGELIST ;defines forward ref to type IMAGELIST
|
|
ret
|
|
p1 endp
|
|
|
|
IMAGELIST equ 1 ;must be an error in pass 1
|
|
|
|
END
|