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