RE: w32engin - LUID_AND_ATTRIBUTES structure
Markus:
-- I correct the engine.
-- The predefined structures should be:
--
{null_,"LUID",
"LowPart:dword:1 "& -- should be dword
"HighPart:long:1 "},
--
{null_,"LUID_AND_ATTRIBUTES",
"Luid:STRUCT:LUID "& -- should be structure
"Attributes:dword:1 "}, -- should be dword
--
-- LUCID is a 64-bit value so you would use put or grab
-- the LUCID number like this.
--
atom landa
landa = struc("LUID_AND_ATTRIBUTES")
--
put(landa,"Luid->LowPart",12345) -- lower 32-bits
put(landa,"Luid->HighPart",67890) -- upper 32-bits
put(landa,"Attributes",SOME_ATTRIBUTE)
Bernie
|
Not Categorized, Please Help
|
|