forked from KolibriOS/kolibrios
- Rebuilt TinyPy
- Non-working trash is cleaned. - Updated from latest git version. - Fixed modules pygame math and others. - Removed old modules added new ones. - All samples work except "net" git-svn-id: svn://kolibrios.org@8535 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
15
programs/develop/tinypy/std_modules/modules.c
Normal file
15
programs/develop/tinypy/std_modules/modules.c
Normal file
@@ -0,0 +1,15 @@
|
||||
#include "math/init.c"
|
||||
#include "random/init.c"
|
||||
#include "re/init.c"
|
||||
#include "ksys/init.c"
|
||||
#include "pygame/init.c"
|
||||
#include "bitwise/init.c"
|
||||
|
||||
void init_std_modules(TP){
|
||||
math_init(tp);
|
||||
random_init(tp);
|
||||
re_init(tp);
|
||||
ksys_init(tp);
|
||||
pygame_init(tp);
|
||||
bitwise_init(tp);
|
||||
}
|
Reference in New Issue
Block a user