Changeset 407 for trunk


Ignore:
Timestamp:
May 22, 2016, 3:06:49 PM (9 years ago)
Author:
RBRi
Message:

lib is now back in sync with old trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Library/AStringUtilityUnit.pas

    r309 r407  
    88  Classes,
    99  ACLString;
     10
     11// Puts specified program command line parameter
     12// into AString
     13procedure AString_ParamStr( item: byte;
     14                            S: TAString );
    1015
    1116// Splits up an AString at the given separator CHAR
     
    5257uses
    5358  ACLUtility;
     59
     60procedure AString_ParamStr( item: byte;
     61                            S: TAString );
     62var
     63  p: pchar;
     64  l: longint;
     65begin
     66  GetCommandLineParameter( item, p, l );
     67  S.AssignPCharLen( p, l );
     68end;
    5469
    5570procedure AStringToList( S: TAstring;
Note: See TracChangeset for help on using the changeset viewer.