メモリの内容を取得します。
文字 | Cのデータ型 | 結果のデータ型 |
---|---|---|
c | char | 整数型 |
s | short | 整数型 |
i | int | 整数型 |
l | long | 整数型 |
b | BYTE (unsigned char) | 整数型 |
w | WORD (unsigned short) | 整数型 |
u | UINT (unsigned int) | 整数型 |
W | DWORD (unsigned long) | 整数型 |
f | float | 実数型 |
d | double | 実数型 |
P | void* | ポインタ型 |
S | char* | 文字列型 |
struct { |
WORD w; |
char* lpstr; |
char str[10]; |
}; |
#PEEK($MEM, 0, 'w'); |
#PEEK($MEM, 2, 'P'); |
#PEEK(#PEEK($MEM, 2, 'P'), 0, 'S'); |
#PEEK($MEM, 6, 'S'); |