...global var's ? shocked ...or "forward" the function ?
Code:
//////////////////////
// main.c
//////////////////////
STRING* mytextstr = "the global text to show";
...
..
////////////////////////////////
// "program"1.c / "program"2.c
////////////////////////////////
   ...
   ..
   mytextstr = "Iam a global string"; // (wont work see manual)
   ..
   ...



Code:
...
..
function aha_this_works(); // now blabla knows about the function below
..
...
function blabla(){
   aha_this_works();
}
...
..
//////////////////////
// "program"1.c
//////////////////////
function aha_this_works(){
   draw_text ("damn iam tired", 10,10, vector (255,0,0));
}


Or maybe its possible to change the order of your include's ?

You're talking about different "programs"...but i guess u mean "scripts" ? Or is your goal to have two running processes / tasks / games on one computer ? why ? Sry i dont get it grin


Acknex umgibt uns...zwischen Dir, mir, dem Stein dort...
"Hey Griswold ... where u gonna put a tree that big ?"
1998 i married my loved wife ... Sheeva from Mortal Kombat, not Evil-Lyn as might have been expected
rayp.flags |= UNTOUCHABLE;