OpenMAXBellagio  0.9.3
common.h
Go to the documentation of this file.
00001 
00027 #ifndef __COMMON_H__
00028 #define __COMMON_H__
00029 
00030 #define MAX_LINE_LENGTH 2048
00031 
00032 int makedir(const char *newdir);
00033 
00034 char *componentsRegistryGetFilename(void);
00035 char* loadersRegistryGetFilename(char* registry_name);
00036 int exists(const char* fname);
00037 
00038 typedef struct nameList {
00039     char* name;
00040     struct nameList *next;
00041 } nameList;
00042 
00043 
00044 #endif
00045