Modifying rawtypes.h

About this task

The rawtypes.h file contains the basic types supplied by the RTOS to be used by the OXF. If you are creating the RTOS, you must add the include file for that environment.

For example, the VxWorks section of the rawtypes.h file is as follows:

// Basic os definitions

#ifdef VxWorks
#include <vxWorks.h>
#endif 

Feedback