#include "Splashscreen.h"Include dependency graph for Splashscreen.c:

Go to the source code of this file.
Functions | |
| void | CreateSplashscreen (void) |
Variables | |
| HINSTANCE | hdllInstance |
| void CreateSplashscreen | ( | void | ) |
Definition at line 8 of file Splashscreen.c.
References CreateDialog(), hdllInstance, NULL, and SW_SHOWNORMAL.
Referenced by Windows_Main().
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 }
Here is the call graph for this function:

Here is the caller graph for this function:

| HINSTANCE hdllInstance |
1.5.1