* fixes name table entries issue

git-svn-id: https://svn.code.sf.net/p/openv2g/code/trunk@54 d9f2db14-54d0-4bde-b00c-16405c910529
This commit is contained in:
daniel_peintner 2012-01-31 13:49:41 +00:00
parent 32078408b5
commit e8ba2a611c
4 changed files with 1122 additions and 1120 deletions

2234
.cproject

File diff suppressed because it is too large Load diff

View file

@ -179,7 +179,7 @@ struct exiNamePartition localNamePartitions[9] = {
#endif /*EXI_DEBUG*/
#if EXI_DEBUG == EXI_DEBUG_OFF
struct exiNamePartition localNamePartitions[9] = {
static struct exiNamePartition localNamePartitions[9] = {
{ 9 },
{ 4 },
{ 2 },

View file

@ -75,7 +75,7 @@ char * uris[] = {
#endif /*EXI_DEBUG*/
#if EXI_DEBUG == EXI_DEBUG_ON
struct exiNamePartition localNamePartitions[5] = {
static struct exiNamePartition localNamePartitions[5] = {
{ 7, localNames0 },
{ 4, localNames1 },
{ 2, localNames2 },

View file

@ -33,10 +33,10 @@
int main(int argc, char *argv[]) {
/* EXI codec only */
/*return main_codec(argc, argv); */
return main_codec(argc, argv);
/* V2G client / service example scenario */
return main_service(argc, argv);
/*return main_service(argc, argv); */
}