#include "celestiacore.h"Include dependency graph for wintime.h:

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

Go to the source code of this file.
Functions | |
| void | ShowSetTimeDialog (HINSTANCE appInstance, HWND appWindow, CelestiaCore *appCore) |
|
||||||||||||||||
|
Definition at line 300 of file wintime.cpp. References appInstance, IDD_SETTIME, and SetTimeProc(). Referenced by MainWindowProc(). 00303 {
00304 SetTimeDialog* timeDialog = new SetTimeDialog(appCore);
00305
00306 DialogBoxParam(appInstance, MAKEINTRESOURCE(IDD_SETTIME), appWindow, SetTimeProc, reinterpret_cast<LPARAM>(timeDialog));
00307
00308 delete timeDialog;
00309 }
|
1.4.1