如何聲明一個數組常量??? (20分)

L

leway

Unregistered / Unconfirmed
GUEST, unregistred user!
同上。

CONST SEGMENT PUBLIC 'CONST'

g_adwColor LABEL DWORD
DWORD 000000000h
DWORD 000000001h
DWORD 000000100h
DWORD 000000101h
DWORD 000010000h
DWORD 000010001h
DWORD 000010100h
DWORD 000010101h
DWORD 001000000h
DWORD 001000001h
DWORD 001000100h
DWORD 001000101h
DWORD 001010000h
DWORD 001010001h
DWORD 001010100h
DWORD 001010101h

CONST ENDS
 
const
g_adwColor:Array[1..16] of Longword=(1,2,....);
 
接受答案了.
 

Similar threads

I
回复
0
查看
458
import
I
I
回复
0
查看
525
import
I
I
回复
0
查看
654
import
I
I
回复
0
查看
731
import
I
I
回复
0
查看
682
import
I
顶部