Beispiel #1
0
//* 
//* Release All Resources
//* 
void a_release_all(){
  //-- Release All
  ag_closefonts();  //-- Release Fonts
  ev_exit();        //-- Release Input Engine
  az_close();       //-- Release Zip Handler
  ag_close();       //-- Release Graph Engine
  
}
Beispiel #2
0
//* 
//* Release All Resources
//* 
void a_release_all(){
  //-- Release All
  ag_closefonts();  //-- Release Fonts
  LOGS("Font Released\n");
  ev_exit();        //-- Release Input Engine
  LOGS("Input Released\n");
  az_close();       //-- Release Zip Handler
  LOGS("Archive Released\n");
  ag_close();       //-- Release Graph Engine
  LOGS("Graph Released\n");
}