Can i isolate my WNDPROC into another .C file?
My main.c is gigantic because of all the CASES in the MSG switch :\
Its my first project, im working on it for months and now i feel like I cant find things in main.c, so i have sent some functions to other .c files but all projects i have seen until now keep wndproc at main.c.
So i thought you could give me some advice on doing it or not.
Thanks
/Obs
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I guess you want to split up your file ino little pieces. Sure, go ahead it should work. But be sure to write header files and include them to the files which need it.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Can i isolate my WNDPROC into another .C file?
My main.c is gigantic because of all the CASES in the MSG switch :\
Its my first project, im working on it for months and now i feel like I cant find things in main.c, so i have sent some functions to other .c files but all projects i have seen until now keep wndproc at main.c.
So i thought you could give me some advice on doing it or not.
Thanks
/Obs
I guess you want to split up your file ino little pieces. Sure, go ahead it should work. But be sure to write header files and include them to the files which need it.