Dynamically Loading .out Files in VxWorks

Dynamically Loading .out Files in VxWorks

Click “Read the original text” to access more VxWorks resources How to dynamically load .out files under VxWorks, the following is the actual code for reference: //Device.cpp #include “other.h” #ifdef __cplusplus extern “C” { #endif int initDevice(char *arg); #ifdef __cplusplus } #endif int initDevice(char *arg) { printf(“%s\n”, arg); } The generated .out file needs to … Read more

×