Last change
on this file since 611 was 453, checked in by Kevin Toppenberg, 16 years ago |
Initial upload of TMG-CPRS 1.0.26.69
|
File size:
806 bytes
|
Rev | Line | |
---|
[453] | 1 | //kt -- Modified with SourceScanner on 8/7/2007
|
---|
| 2 | unit rEventHooks;
|
---|
| 3 |
|
---|
| 4 | interface
|
---|
| 5 |
|
---|
| 6 | uses
|
---|
| 7 | Classes, ORNet;
|
---|
| 8 |
|
---|
| 9 | function GetPatientChangeGUIDs: string;
|
---|
| 10 | function GetOrderAcceptGUIDs(DisplayGroup: integer): string;
|
---|
| 11 | function GetAllActiveCOMObjects: TStrings;
|
---|
| 12 | function GetCOMObjectDetails(IEN: integer): string;
|
---|
| 13 |
|
---|
| 14 | implementation
|
---|
| 15 |
|
---|
| 16 | function GetPatientChangeGUIDs: string;
|
---|
| 17 | begin
|
---|
| 18 | Result := sCallV('ORWCOM PTOBJ', []);
|
---|
| 19 | end;
|
---|
| 20 |
|
---|
| 21 | function GetOrderAcceptGUIDs(DisplayGroup: integer): string;
|
---|
| 22 | begin
|
---|
| 23 | Result := sCallV('ORWCOM ORDEROBJ', [DisplayGroup]);
|
---|
| 24 | end;
|
---|
| 25 |
|
---|
| 26 | function GetAllActiveCOMObjects: TStrings;
|
---|
| 27 | begin
|
---|
| 28 | CallV('ORWCOM GETOBJS', []);
|
---|
| 29 | Result := RPCBrokerV.Results;
|
---|
| 30 | end;
|
---|
| 31 |
|
---|
| 32 | function GetCOMObjectDetails(IEN: integer): string;
|
---|
| 33 | begin
|
---|
| 34 | Result := sCallV('ORWCOM DETAILS', [IEN]);
|
---|
| 35 | end;
|
---|
| 36 |
|
---|
| 37 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.