WHAT'S NEW with version 0.0.3: - Fixed bug with sector sizes. - Registers at program startup are now set correctly. - Segment fixups for relocatable-segment internal entry points. - Fixed bug in DOS PSP structure. - Some resource loading is done. - Added "return" ordinal type to build program. - Added comment capability to build program.
17 lines
381 B
C
17 lines
381 B
C
static char RCSId[] = "$Id: user.c,v 1.1 1993/06/29 15:55:18 root Exp $";
|
|
static char Copyright[] = "Copyright Robert J. Amstadt, 1993";
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "prototypes.h"
|
|
|
|
/**********************************************************************
|
|
* USER_InitApp
|
|
*
|
|
* Load necessary resources?
|
|
*/
|
|
int
|
|
USER_InitApp(int hInstance)
|
|
{
|
|
return 1;
|
|
}
|