(file) Return to regfile.h CVS log (file) (dir) Up to [OMI] / omi / provreg

Diff for /omi/provreg/regfile.h between version 1.2 and 1.3

version 1.2, 2015/04/20 18:10:14 version 1.3, 2015/04/20 18:19:56
Line 26 
Line 26 
 #define _provreg_regfile_h #define _provreg_regfile_h
  
 #include <common.h> #include <common.h>
   #include "provreg.h"
   
   /* Maximum line length */
   #define MAX_LINE 1024
  
 BEGIN_EXTERNC BEGIN_EXTERNC
  
Line 41 
Line 45 
  
     /* Provider process-hosting model */     /* Provider process-hosting model */
     char* hosting;     char* hosting;
   
       /* Registered class type */
       ProvRegType regtype;
 } }
 RegClass; RegClass;
  
 typedef struct _RegFile typedef struct _RegFile
 { {
     char* library;     char* library;
   
   #if defined(CONFIG_ENABLE_PREEXEC)
   
       /* Name of program to be executed before invoking this provider */
       char* preexec;
   
   #endif /* defined(CONFIG_ENABLE_PREEXEC) */
   
       /* 1 if lifetime of instance is that of context,
        * 0 otherwise
        */
       int instanceLifetimeContext;
   
     RegClass* classesHead;     RegClass* classesHead;
     RegClass* classesTail;     RegClass* classesTail;
       RegClass* extraClassesHead;
       RegClass* extraClassesTail;
 } }
 RegFile; RegFile;
  


Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

ViewCVS 0.9.2