WinCSX 0.2 initial commitment
This commit is contained in:
23
dlls/csx/source/WinCSX/WinCSX.h
Executable file
23
dlls/csx/source/WinCSX/WinCSX.h
Executable file
@ -0,0 +1,23 @@
|
||||
#pragma once
|
||||
|
||||
#include "resource.h"
|
||||
#include "CRank.h"
|
||||
|
||||
// Constants
|
||||
#define MAX_LOADSTRING 100
|
||||
#define VERSION "0.2"
|
||||
|
||||
// Global Variables:
|
||||
HINSTANCE hInst; // current instance
|
||||
TCHAR g_szTitle[MAX_LOADSTRING]; // The title bar text
|
||||
TCHAR g_szWindowClass[MAX_LOADSTRING]; // the main window class name
|
||||
RankSystem g_rank;
|
||||
HWND g_hWnd;
|
||||
|
||||
// Forward declarations of functions included in this code module:
|
||||
ATOM MyRegisterClass(HINSTANCE hInstance);
|
||||
BOOL InitInstance(HINSTANCE, int);
|
||||
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
|
||||
LRESULT CALLBACK WinCSXBox(HWND, UINT, WPARAM, LPARAM);
|
||||
bool LoadRankFromFile(HWND hDlg);
|
||||
|
Reference in New Issue
Block a user