Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What stands for lpfnWndProc?

Tags:

winapi

I know lp = long pointer WndProc = Windows Procedure

but I dunno what is fn. fn stands for what?

WNDCLASS wndClass;
wndClass.lpfnWndProc = WindowProcedure;
like image 705
zzz Avatar asked Sep 12 '25 05:09

zzz


1 Answers

fn = Function. lpfnWndProc = Long Pointer to the Windows Procedure function.

like image 172
mjk Avatar answered Sep 15 '25 13:09

mjk