Equinox Online Help - Language Reference - A to Z

Home

MakeLong

Applies to
SyntaxMakelong(HighExpression, LowExpression)
Action[Function] Returns an unsigned long data item.
ScopeUsable anywhere.
Notes

This function returns an unsigned long, made by combining two unsigned integers. The argument HighExpression is used as the upper word and LowExpression is used as the lower word.

Note that this function is only provided for DLL support. You should not use it for general data handling.

CategoryWindows and DLLs
See Also Bcopy, WindowHandle, External, FontHandle, GetMessageParameters, GetNotifyParameters, Hiword, Loword, PaletteRGB, RGB, RGBValues
Example

This example calls the Windows function WindowFromPoint.

External "user" WindowFromPoint Long Returns Handle

Handle myWnd

...

myWnd = WindowFromPoint(Makelong(400, 300))