Common file for all modules of the modules example example.
#include "common.h"
long some_glb_val mc_comm_dat = 6;
comm_cla* some_comm_obj mc_comm_dat = mc_null;
void comm_f1_workeru(){
prts("comm_f1_workeru \n");
comm_f2_workeru();
}
void comm_f2_workeru(){
prts("comm_f2_workeru \n");
}
void comm_prt(char* val){
}
void
comm_cla::method1(){
}
comm_cla::comm_cla(){
init_comm_cla();
}
comm_cla::~comm_cla(){
}
void
comm_cla::init_comm_cla(){
aa = 7;
bb = 33;
}