dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnet/include il_engine.h,1.27,1.28


From: Gopal.V <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnet/include il_engine.h,1.27,1.28
Date: Sun, 17 Nov 2002 13:11:36 -0500

Update of /cvsroot/dotgnu-pnet/pnet/include
In directory subversions:/tmp/cvs-serv21336/include

Modified Files:
        il_engine.h 
Log Message:
multiple internal call table attached


Index: il_engine.h
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/include/il_engine.h,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -r1.27 -r1.28
*** il_engine.h 16 Nov 2002 19:00:39 -0000      1.27
--- il_engine.h 17 Nov 2002 18:11:32 -0000      1.28
***************
*** 112,115 ****
--- 112,126 ----
  };
  
+ /*
+  * Simple linked list for storing multiple blocks of internal calls
+  */
+ typedef struct _tagILEngineInternalClassList ILEngineInternalClassList;
+ struct _tagILEngineInternalClassList
+ {
+       const ILEngineInternalClassInfo *list;
+       int size;
+       struct _tagILEngineInternalClassList* next;
+ };
+ 
  
  /*
***************
*** 283,288 ****
   * Add a new set of internal calls to the process's lookup table
   */
! int ILExecProcessSetInternalCallTable(ILExecProcess* process, 
!                                       ILEngineInternalClassInfo* 
internalClassTable,
                                        int internalClassCount);
  /*
--- 294,299 ----
   * Add a new set of internal calls to the process's lookup table
   */
! int ILExecProcessAddInternalCallTable(ILExecProcess* process, 
!                                       const ILEngineInternalClassInfo* 
internalClassTable,
                                        int internalClassCount);
  /*





reply via email to

[Prev in Thread] Current Thread [Next in Thread]