Syntax 1: For combining longs
Description
Combines two unsigned longs into a longlong value.
Syntax
|
1 |
LongLong ( lowword, highword ) |
|
Argument |
Description |
|---|---|
|
lowword |
An UnsignedLong to be the low word in the |
|
highword |
An UnsignedLong to be the high word in the |
Return value
LongLong.
Returns the longlong if it succeeds and -1 if an error occurs. If
any argument’s value is null, LongLong returns null.
Usage
Use LongLong for passing values to external C++ and Java
functions.
Examples
These statements convert the UnsignedLongs lLow and lHigh into a
long value:
|
1 2 3 4 5 6 7 8 |
UnsignedLong lLow //Low long 32 bits UnsignedLong lHigh //High long 32 bits longlong LLValue //LongLong value 64 bits lLow = 1234567890 lHigh = 9876543210 LLValue = LongLong(lLow, lHigh) MessageBox("LongLong Value", LLValue) |
Document get from Powerbuilder help
Thank you for watching.
Subscribe
Login
0 Comments
Oldest