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 *componentsRegistryGetFilenameCheck(int check_exists);
00036 char* loadersRegistryGetFilename(char* registry_name);
00037 int exists(const char* fname);
00038 
00039 typedef struct nameList {
00040     char* name;
00041     struct nameList *next;
00042 } nameList;
00043 
00044 
00045 #endif
00046