Am really not to sure about the Binary data type but I found this code sample on another forum topic (5th post down): https://forums.jadeworld.com/viewtopic.php?f=9&t=1447
I can retrieve all the values and that is all good in a 32bit system.
What I am wondering is if I have to adjust the index values if I were to run this in a 64bit system?
e.g.
sysInfoStructure [ 32 : 1 ] := 0.Binary; ----should be ---> sysInfoStructure [ 64 : 1 ] := 0.Binary;
dwPageSize := sysInfoStructure[ 5 : 4].Integer ----should be ---> dwPageSize := sysInfoStructure[ ? : ? ].Integer
Any sort of info would be good at this point.
Thanks