void SetALong(p,x);
Stores an int32 at the address specified by a void pointer. This function can store an int32 at any address, even if the int32 is not long word aligned on a platform that enforces alignment.
Name | Type | Description |
---|---|---|
p | void * | Address at which you want to store an int32. This parameter is a pointer. |
x | int32 | Value you want to store at the specified address. |