#include <windows.h>#include <windowsx.h>#include "wgnuplib.h"#include "resource.h"#include "Messages.h"#include "Warnings.h"#include "Errors.h"#include "version.h"#include "win_mem_alloc.h"Include dependency graph for Splashscreen.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| void | CreateSplashscreen (void) |
| void CreateSplashscreen | ( | void | ) |
Definition at line 8 of file Splashscreen.c.
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 }
1.5.1