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/urlan.h

    r453 r455  
    509509extern int ur_encodingCharSize[UR_ENC_COUNT]; 
    510510 
     511int     ur_sizeofUrlanEnv(); 
    511512int     ur_startup( UrlanEnv*, UDatatype* custom, int customCount ); 
    512513void    ur_shutdown( UrlanEnv* ); 
     
    514515void    ur_disable( UrlanEnv*, int envFlags ); 
    515516void    ur_freezeEnv( UThread*, int binCount, int blkCount ); 
     517UThread* ur_thread( UrlanEnv* ); 
    516518UThread* ur_threadMake( UrlanEnv*, int binCount, int blkCount ); 
    517519void     ur_threadFree( UThread* ); 
     
    551553UIndex  ur_makeBinaryT( UThread*, int size, UBinary** ptr ); 
    552554UIndex  ur_makeBinaryFrom( UThread*, const UCell* ); 
    553 UIndex ur_makeStringT( UThread*, UCell*, const char* txt, int len ); 
     555UString* ur_makeStringT( UThread*, UCell*, const char* txt, int len ); 
    554556UIndex  ur_makeVectorT( UThread*, int size, UArray** ptr ); 
    555557UIndex  ur_makeResourceT( UThread*, int dataType, int size, UResource** );