Changeset 738 for cprs/branches/tmg-cprs/CPRS-Lib/ORNet.pas
- Timestamp:
- Apr 19, 2010, 5:24:20 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cprs/branches/tmg-cprs/CPRS-Lib/ORNet.pas
r654 r738 24 24 function GetRPCMax: integer; 25 25 procedure LoadRPCData(Dest: TStrings; ID: Integer); 26 function AccessRPCData(ID: Integer) : TStringList; //kt added -- Caller DOESN'T own object 26 27 function DottedIPStr: string; 27 28 procedure CallRPCWhenIdle(CallProc: TORIdleCallProc; Msg: String); … … 461 462 end; 462 463 464 function AccessRPCData(ID: Integer) : TStringList; 465 //kt added -- Caller DOESN'T own object 466 begin 467 Result := nil; 468 if (ID > -1) and (ID < uCallList.Count) then Result := TStringList(uCallList.Items[ID]); 469 end; 470 471 463 472 function DottedIPStr: string; 464 473 { 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.