Hi, i have just began using CCS (last version). I simply create a project and started with including just "stdio.h" and printing hello world, it worked on my beagleboard Xm 's DSP. But when i include "ih264venc.h" it gives 26 errors:
#93 identifier-list parameters may only be used in a function definition deneme line 754, external location: C:\ti\xdais_7_21_01_07\packages\ti\xdais\ialg.h C/C++ Problem
#91 function returning function is not allowed deneme line 1217, external location: C:\ti\xdais_7_21_01_07\packages\ti\xdais\dm\xdm.h C/C++ Problem
#80 expected a type specifier deneme line 1217, external location: C:\ti\xdais_7_21_01_07\packages\ti\xdais\dm\xdm.h C/C++ Problem
#20 identifier "Void" is undefined deneme line 1198, external location: C:\ti\xdais_7_21_01_07\packages\ti\xdais\dm\xdm.h C/C++ Problem
#20 identifier "Uns" is undefined deneme line 138, external location: C:\ti\xdais_7_21_01_07\packages\ti\xdais\ialg.h C/C++ Problem
#20 identifier "Uint8" is undefined deneme line 62, external location: C:\ti\xdais_7_21_01_07\packages\ti\xdais\xdas.h C/C++ Problem
#20 identifier "Uint32" is undefined deneme line 70, external location: C:\ti\xdais_7_21_01_07\packages\ti\xdais\xdas.h C/C++ Problem
#20 identifier "Uint16" is undefined deneme line 68, external location: C:\ti\xdais_7_21_01_07\packages\ti\xdais\xdas.h C/C++ Problem
#20 identifier "Int8" is undefined deneme line 65, external location: C:\ti\xdais_7_21_01_07\packages\ti\xdais\xdas.h C/C++ Problem
#20 identifier "Int32" is undefined deneme line 69, external location: C:\ti\xdais_7_21_01_07\packages\ti\xdais\xdas.h C/C++ Problem
#20 identifier "Int16" is undefined deneme line 67, external location: C:\ti\xdais_7_21_01_07\packages\ti\xdais\xdas.h C/C++ Problem
#20 identifier "Int" is undefined deneme line 139, external location: C:\ti\xdais_7_21_01_07\packages\ti\xdais\ialg.h C/C++ Problem
Finally here is my code:
#include "stdio.h"
#include <ih264venc.h>
void main(void){
printf("Hello World!\n");
}
How can i fix this? Please tell me by knowing i am newbie.