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

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

[Dotgnu-pnet-commits] CVS: pnet/engine lib_type.c,1.31,1.32


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnet/engine lib_type.c,1.31,1.32
Date: Thu, 27 Feb 2003 23:57:50 -0500

Update of /cvsroot/dotgnu-pnet/pnet/engine
In directory subversions:/tmp/cvs-serv16376/engine

Modified Files:
        lib_type.c 
Log Message:


Shift the name information out of ILClass into a separate ILClassName
record, so that we can eventually load the names before loading the classes.


Index: lib_type.c
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/engine/lib_type.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -r1.31 -r1.32
*** lib_type.c  18 Feb 2003 06:18:59 -0000      1.31
--- lib_type.c  28 Feb 2003 04:57:46 -0000      1.32
***************
*** 1974,1978 ****
                                        if((bindingAttrs & 
(ILInt32)BF_IgnoreCase) == 0)
                                        {
!                                               if(strcmp(child->name, 
nameUtf8) != 0)
                                                {
                                                        continue;
--- 1974,1978 ----
                                        if((bindingAttrs & 
(ILInt32)BF_IgnoreCase) == 0)
                                        {
!                                               if(strcmp(ILClass_Name(child), 
nameUtf8) != 0)
                                                {
                                                        continue;
***************
*** 1981,1985 ****
                                        else
                                        {
!                                               if(ILStrICmp(child->name, 
nameUtf8) != 0)
                                                {
                                                        continue;
--- 1981,1985 ----
                                        else
                                        {
!                                               
if(ILStrICmp(ILClass_Name(child), nameUtf8) != 0)
                                                {
                                                        continue;
***************
*** 2196,2200 ****
                                                if((bindingAttrs & 
(ILInt32)BF_IgnoreCase) == 0)
                                                {
!                                                       if(strcmp(child->name, 
nameUtf8) != 0)
                                                        {
                                                                continue;
--- 2196,2200 ----
                                                if((bindingAttrs & 
(ILInt32)BF_IgnoreCase) == 0)
                                                {
!                                                       
if(strcmp(ILClass_Name(child), nameUtf8) != 0)
                                                        {
                                                                continue;
***************
*** 2203,2207 ****
                                                else
                                                {
!                                                       
if(ILStrICmp(child->name, nameUtf8) != 0)
                                                        {
                                                                continue;
--- 2203,2207 ----
                                                else
                                                {
!                                                       
if(ILStrICmp(ILClass_Name(child), nameUtf8) != 0)
                                                        {
                                                                continue;





reply via email to

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