Files
itgmania212121/stepmania/src/arch/LoadingWindow/LoadingWindow_Win32.h
T
2003-12-30 02:00:16 +00:00

34 lines
647 B
C++

#ifndef LOADING_WINDOW_WIN32_H
#define LOADING_WINDOW_WIN32_H
/* Loading window using a Windows dialog. */
#include "LoadingWindow.h"
#include <windows.h>
#include "../../archutils/Win32/AppInstance.h"
class LoadingWindow_Win32: public LoadingWindow {
AppInstance handle;
HWND hwnd;
CString text[3];
static BOOL CALLBACK WndProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam );
public:
LoadingWindow_Win32();
~LoadingWindow_Win32();
void SetText(CString str);
void Paint();
};
#define HAVE_LOADING_WINDOW_WIN32
#endif
/*
* Copyright (c) 2002-2003 by the person(s) listed below. All rights reserved.
*
* Glenn Maynard
*/