SetALong (LabVIEW Manager Macro)
- Updated2025-01-28
- 1 minute(s) read
SetALong (LabVIEW Manager Macro)
void SetALong(p,x);
Purpose
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.
Parameters
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. |