modules.c
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 08 Jun 2016 00:32:50 +0100
branchjv
changeset 1442 14aa87cd5d2d
parent 735 cefe768e2f90
permissions -rw-r--r--
Added SmalltalkStartup class For historical reasons, IDE startup is not actually implemented as a StandaloneStartup class as for Smalltalk/X-based applications. Instead, the Smalltalk>>start reads smalltalk.rc and startup procedure is defined there. In order to reduce a number of .rc script hackery, functionality will be incrementally moved from those scripts to this class and scripts will be changed to call methods in this class. Eventually we will reach the point when scripts will be empty and all functionality will be here. Let's hope.

/* $Header$
 *
 * DO NOT EDIT 
 * automagically generated from the projectDefinition: stx_projects_smalltalk.
 *
 * Warning: once you modify this file, do not rerun
 * stmkmp or projectDefinition-build again - otherwise, your changes are lost.
 */
typedef void (*vf)();

extern void _SmalltalkStartup_Init();
extern void _stx_137projects_137smalltalk_Init();


static vf modules[] = {
    _SmalltalkStartup_Init,
_stx_137projects_137smalltalk_Init,

    (vf)0
};

vf *__modules__ = modules;