Reputation: 161
I know lp = long pointer WndProc = Windows Procedure
but I dunno what is fn. fn stands for what?
WNDCLASS wndClass;
wndClass.lpfnWndProc = WindowProcedure;
Upvotes: 4
Views: 4258
Reputation: 541
fn = Function. lpfnWndProc = Long Pointer to the Windows Procedure function.
Upvotes: 6
Reputation: 29985
'fn' means function. You're right about the 'lp' meaning 'long pointer'
Upvotes: 0
Reputation: 151674
From the documentation:
lpfnWndProc
Type: WNDPROC
A pointer to the window procedure. You must use the CallWindowProc function to call the window procedure. For more information, see WindowProc.
Upvotes: 0