Splashscreen.c

Go to the documentation of this file.
00001 /*-----------------------------------------------------------------------------------*/
00002 /* INRIA 2005 */
00003 /* Allan CORNET */
00004 /*-----------------------------------------------------------------------------------*/
00005 #include "Splashscreen.h"
00006 extern HINSTANCE hdllInstance;
00007 /*-----------------------------------------------------------------------------------*/
00008 void CreateSplashscreen(void)
00009 {
00010         HWND hdlg;
00011         hdlg = CreateDialog(hdllInstance, "IDD_SPLASH", NULL,NULL);
00012 
00013         ShowWindow(hdlg, SW_SHOWNORMAL);
00014         UpdateWindow(hdlg);
00015         Sleep(1500);
00016 
00017         DestroyWindow(hdlg);
00018 }
00019 /*-----------------------------------------------------------------------------------*/

Generated on Sun Mar 4 15:03:54 2007 for Scilab [trunk] by  doxygen 1.5.1