Show
Ignore:
Timestamp:
08/27/07 21:05:56 (15 months ago)
Author:
krobillard
Message:

Added ur_sizeofUrlanEnv() & ur_thread() to hide UrlanEnv? structure.
ur_makeStringT() now returns UString*.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/thune/thread_safe/make.c

    r453 r455  
    668668  Special characters are translated. 
    669669*/ 
    670 UIndex ur_makeStringT( UThread* ut, UCell* res, const char* txt, int len ) 
     670UString* ur_makeStringT( UThread* ut, UCell* res, const char* txt, int len ) 
    671671{ 
    672672    UIndex strN; 
     
    711711                ur_initString( res, strN, 0 ); 
    712712                ur_setEncoding( res, UR_ENC_UTF16 ); 
    713                 return strN; 
     713                return str; 
    714714            } 
    715715            *out++ = ch; 
     
    723723 
    724724    ur_initString( res, strN, 0 ); 
    725     return strN; 
     725    return str; 
    726726} 
    727727 
     
    17831783                if( spA ) 
    17841784                { 
    1785                     binN = ur_makeString( res, spA, spB - spA ); 
     1785                    ur_makeString( res, spA, spB - spA ); 
    17861786                } 
    17871787                else