Added stuff so CodeWarrior isn't so verbose about its stdio windows
This commit is contained in:
parent
a76382a6ac
commit
c76fd39587
|
@ -41,6 +41,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
#include <console.h>
|
#include <console.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __MWERKS__
|
||||||
|
#include <SIOUX.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
char *fileargument;
|
char *fileargument;
|
||||||
|
|
||||||
main(argc, argv)
|
main(argc, argv)
|
||||||
|
@ -63,6 +67,11 @@ main(argc, argv)
|
||||||
SIZE resource or whatever... Have fun, and let me know if you find
|
SIZE resource or whatever... Have fun, and let me know if you find
|
||||||
a better way!) */
|
a better way!) */
|
||||||
printf("\n");
|
printf("\n");
|
||||||
|
#endif
|
||||||
|
#ifdef __MWERKS__
|
||||||
|
SIOUXSettings.asktosaveonclose = 0;
|
||||||
|
SIOUXSettings.showstatusline = 0;
|
||||||
|
SIOUXSettings.tabspaces = 4;
|
||||||
#endif
|
#endif
|
||||||
/* Use STDWIN's wargs() to set argc/argv to list of files to open */
|
/* Use STDWIN's wargs() to set argc/argv to list of files to open */
|
||||||
wargs(&argc, &argv);
|
wargs(&argc, &argv);
|
||||||
|
|
Loading…
Reference in New Issue