Can someone explain the purpose 'Function = 0' in the following code?
'Function' is not declared as a variable and so I'm guessing that it
is something inherent to either Windows, PBDll, or perhaps even both.
Thanks For Your Help
Wesley
------------------
[This message has been edited by Wesley Brown (edited March 19, 2001).]
Code:
'From C:\Program Files\PBDLL60\Samples\Skeleton CASE %WM_MENUSELECT LoadString hInst, wParam, zText, SIZEOF(zText) SendMessage hStatus, %WM_SETTEXT, 0, VARPTR(zText) FUNCTION = 0 EXIT FUNCTION CASE %WM_MOUSEMOVE zText = "Mouse Position:" + STR$(LOWRD(lParam)) + ","+STR$(HIWRD(lParam)) SendMessage hStatus, %WM_SETTEXT, 0, VARPTR(zText) FUNCTION = 0 EXIT FUNCTION
is something inherent to either Windows, PBDll, or perhaps even both.
Thanks For Your Help

Wesley
------------------
[This message has been edited by Wesley Brown (edited March 19, 2001).]
Comment