home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / greetz.zip / greet.idl < prev    next >
Text File  |  1993-10-26  |  274b  |  17 lines

  1. [
  2. uuid(6bd705b2-1924-11cb-8b18-10005aa89212),
  3. version(1.0)
  4. ]
  5.  
  6. interface greet
  7. {
  8.    const long STR_SZ = 128;
  9.  
  10.    void greet_rpc
  11.    (
  12.       [in] handle_t h,
  13.       [in,string]  char client_greeting[STR_SZ],
  14.       [out,string] char server_reply[STR_SZ]
  15.    );
  16. }
  17.