mac-tip/mac-cpp-source/Iomega Tester.cpp

24 lines
801 B
C++
Raw Normal View History

2021-11-23 18:50:09 +00:00
#include <stdio.h>
#include <SIOUX.h>
2021-12-01 14:22:14 +00:00
#include <ctype.h>
2021-11-23 18:50:09 +00:00
#include "tip.h"
void main() {
SIOUXSettings.autocloseonquit = TRUE;
2021-11-23 18:50:09 +00:00
SIOUXSettings.asktosaveonclose = FALSE;
SIOUXSettings.standalone = FALSE;
2021-12-01 14:22:14 +00:00
SIOUXSettings.leftpixel = 8;
SIOUXSettings.toppixel = 44;
printf( "------------------------------------------------------------------------------\n" );
printf( "This Mac port (c) 2021 Marcio Teixeira http://github.com/marciot/mac-tip\n" );
printf( "Based on code (c) 2006 Gibson Research Corp http://grc.com/tip/clickdeath.htm\n" );
2021-12-01 14:22:14 +00:00
printf( "------------------------------------------------------------------------------\n" );
2021-12-05 20:31:11 +00:00
printf("\nStarting tip ...\n");
2021-12-01 14:22:14 +00:00
SIOUXSetTitle("\pTrouble in Paradise for Macintosh (" __DATE__ ")");
2021-12-05 20:31:11 +00:00
run_tip();
2021-12-01 14:22:14 +00:00
}