|
From: EviLToYLeT <evi...@us...> - 2004-08-29 19:06:08
|
Update of /cvsroot/notepro/pete-current/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16644/src Modified Files: main.cpp Log Message: Index: main.cpp =================================================================== RCS file: /cvsroot/notepro/pete-current/src/main.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** main.cpp 29 Aug 2004 06:44:57 -0000 1.5 --- main.cpp 29 Aug 2004 19:05:56 -0000 1.6 *************** *** 1,3 **** --- 1,4 ---- #include <windows.h> //include the windows header files + #include "splash.h" #define WIN32_LEAN_AND_MEAN //reduce unnecessary windows controls *************** *** 27,30 **** --- 28,37 ---- wc.style = CS_HREDRAW|CS_VREDRAW; + //Display the splash screen and do some other stuff + { + CSplash showSplash(hInstance); + ::Sleep(1000); //We'll use a delay for now + } + //Regsiter the window class if(!::RegisterClassEx(&wc)){ |