File:  [RetroPC.NET] / mkfont32 / win9x / main.cpp
Revision 1.1: download - view: text, annotated - select for diffs
Mon Jun 7 00:33:09 2004 JST (21 years, 4 months ago) by yui
Branches: MAIN
CVS tags: HEAD
initialize version (T.Yui)

#include	"compiler.h"
#include	"resource.h"
#include	"dialog.h"
#include	"dosio.h"

	HINSTANCE	hInst;


// ホントに初期化だけ〜
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPreInst,
										LPSTR lpszCmdLine, int nCmdShow) {

	hInst = hInstance;

	dosio_init();
	file_setcd(__argv[0]);

	DialogBox(hInst, MAKEINTRESOURCE(IDD_MAIN),
									NULL, (DLGPROC)mkfontproc);
	dosio_term();
	return(0);
}


RetroPC.NET-CVS <cvs@retropc.net>