modules.c
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 30 Jun 2016 17:14:29 +0100
branchjv
changeset 1447 0b149293564f
parent 1442 14aa87cd5d2d
permissions -rw-r--r--
Issue #98: Added -P / --package-path command line option ...to modify package path from command line. Just like java's -cp / --classpath
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
735
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     1
/* $Header$
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     2
 *
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     3
 * DO NOT EDIT 
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     4
 * automagically generated from the projectDefinition: stx_projects_smalltalk.
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     5
 *
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     6
 * Warning: once you modify this file, do not rerun
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     7
 * stmkmp or projectDefinition-build again - otherwise, your changes are lost.
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     8
 */
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     9
typedef void (*vf)();
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    10
1442
14aa87cd5d2d Added SmalltalkStartup class
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 735
diff changeset
    11
extern void _SmalltalkStartup_Init();
735
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    12
extern void _stx_137projects_137smalltalk_Init();
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    13
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    14
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    15
static vf modules[] = {
1442
14aa87cd5d2d Added SmalltalkStartup class
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 735
diff changeset
    16
    _SmalltalkStartup_Init,
14aa87cd5d2d Added SmalltalkStartup class
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 735
diff changeset
    17
_stx_137projects_137smalltalk_Init,
735
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    18
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    19
    (vf)0
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    20
};
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    21
cefe768e2f90 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    22
vf *__modules__ = modules;