mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2024-11-25 05:30:09 +00:00
1c5256a4c6
Only works with FT .dat file. FT music does not work - different format.
35 lines
1.0 KiB
C++
35 lines
1.0 KiB
C++
#pragma once
|
|
#include "gdrv.h"
|
|
|
|
class winmain
|
|
{
|
|
public:
|
|
static char DatFileName[300];
|
|
static int single_step;
|
|
static HINSTANCE hinst;
|
|
static HWND hwnd_frame;
|
|
|
|
static int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd);
|
|
static LRESULT CALLBACK message_handler(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);
|
|
static void memalloc_failure();
|
|
static int ProcessWindowMessages();
|
|
static int check_expiration_date();
|
|
static HDC _GetDC(HWND hWnd);
|
|
static int a_dialog(HINSTANCE hInstance, HWND hWnd);
|
|
static void end_pause();
|
|
static void new_game();
|
|
static void pause();
|
|
static void help_introduction(HINSTANCE a1, HWND a2);
|
|
static void Restart();
|
|
private:
|
|
static int return_value, bQuit, DispFrameRate, DispGRhistory, activated;
|
|
static int has_focus, mouse_down, last_mouse_x, last_mouse_y, no_time_loss;
|
|
static DWORD then, now;
|
|
static UINT iFrostUniqueMsg;
|
|
static gdrv_bitmap8 gfr_display;
|
|
static HCURSOR mouse_hsave;
|
|
static bool restart;
|
|
|
|
static HDC _BeginPaint(HWND hWnd, LPPAINTSTRUCT lpPaint);
|
|
};
|