/* -------------------------------------------------------------------------- FILE : load_file.h PROJECT : PRU DSP host loader DESC : Header file for main C function for PRU loading from binary file. ----------------------------------------------------------------------------- */ #ifndef _LOAD_FILE_H_ #define _LOAD_FILE_H_ #include "tistdtypes.h" // Prevent C++ name mangling #ifdef __cplusplus extern far "c" { #endif /*********************************************************** * Global Macro Declarations * ***********************************************************/ /*********************************************************** * Global Typedef declarations * ***********************************************************/ /*********************************************************** * Global Variable Declarations * ***********************************************************/ /*********************************************************** * Global Function Declarations * ***********************************************************/ /*********************************************************** * End file * ***********************************************************/ #ifdef __cplusplus } #endif #endif // End _LOAD_FILE_H_