I note that the window procedure in SKELETON.BAS is defined with the EXPORT keyword as follows.
Is EXPORT needed here? Also, similar considerations apply to sub-classing window procedures. I’ve just stripped all EXPORT’s from my exe, which makes extensive use of subclassing, and it seems to still run just fine.
Keith
------------------
Code:
FUNCTION WndProc (BYVAL hWnd AS LONG, BYVAL wMsg AS LONG, _ BYVAL wParam AS LONG, BYVAL lParam AS LONG) EXPORT AS LONG
Keith
------------------
Comment