JPEGView/Source/C/PowerPCStub.c
Aaron Giles 92bdb55672 JPEGView 3.3 for Macintosh
These are the sources for the final official release of JPEGView for the
Mac, back in 1994.
2015-02-05 00:18:10 -08:00

1 line
608 B
C

/*********************************************************/
/* This source code copyright (c) 1991-2001, Aaron Giles */
/* See the Read Me file for licensing information. */
/* Contact email: mac@aarongiles.com */
/*********************************************************/
#include <Dialogs.h>
#include <Fonts.h>
#include <Menus.h>
#include <QuickDraw.h>
#include <TextEdit.h>
#include <Windows.h>
main()
{
// initialize the Toolbox here
InitGraf(&qd.thePort);
InitFonts();
InitWindows();
InitMenus();
TEInit();
InitDialogs(nil);
InitCursor();
StopAlert(9876, nil);
}