Ignore:
Timestamp:
Apr 19, 2010, 5:24:20 PM (14 years ago)
Author:
Kevin Toppenberg
Message:

Fixed Text Object Parameters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cprs/branches/tmg-cprs/CPRS-Lib/ORNet.pas

    r654 r738  
    2424function GetRPCMax: integer;
    2525procedure LoadRPCData(Dest: TStrings; ID: Integer);
     26function AccessRPCData(ID: Integer) : TStringList; //kt added  -- Caller DOESN'T own object
    2627function DottedIPStr: string;
    2728procedure CallRPCWhenIdle(CallProc: TORIdleCallProc; Msg: String);
     
    461462end;
    462463
     464function AccessRPCData(ID: Integer) : TStringList;
     465//kt added  -- Caller DOESN'T own object
     466begin
     467  Result := nil;
     468  if (ID > -1) and (ID < uCallList.Count) then Result := TStringList(uCallList.Items[ID]);
     469end;
     470
     471
    463472function DottedIPStr: string;
    464473{ return the IP address of the local machine as a string in dotted form: nnn.nnn.nnn.nnn }
Note: See TracChangeset for help on using the changeset viewer.