Hello,
i'm building a project using the windows application wizard and selecting the "hello word" template.
what i want is to split main.c file so every dialog functions are in separate c files as i have to build a big menu for my application.
For example if i remove the last AboutDlgProc function from the main file and move to another aboutdlg.c file is a good practice to declare the function prototype as external in the main.c file as follows?:
extern LRESULT WINAPI AboutDlgProc(HWND, UINT, WPARAM, LPARAM);