views:

31

answers:

1

Preceding registry value data by a number-sign (#) causes the value interpreted as a dword in decimal number. This is OK and I have no problem with it. I'm just curious, is there a way to express it in a hexadecimal number.

Thanks in advance.

+1  A: 

Apparently not.

The "#x" prefix understands hex but produces a REG_BINARY value instead of a REG_DWORD.

Frédéric Hamidi