| All files : | ||||||||||||
| The top of the file should look
like the following : 
 | ||||||||||||
| Header files
: Encapsulating the header there needs
to be a define header name sequence that looks like the following. Where
the myheader_h is replaced by the filename of the 
 // edict_t.h - 567 to 980 - Replaced All code with this below. Make comments within the header of the items changed / rewritten from the original source. #ifndef _myheader_h_  
 //Header Code #endif //
Close off the #ifndef  
 | ||||||||||||
| Cpp / C files
: Encapsulating
the c / cpp file there needs to be a define file sequence that looks like
the following. Where the mycfile_c is replaced by the filename of
the 
 // edict_t.h - 567 to 980 - Replaced All code with this below. Make comments within the header
of the items changed / rewritten from the original source. 
 #ifndef _mycfile_c_  
 //C / Cpp Code #endif |