home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / makedce.zip / EXAMPLES.ZIP / examples / MClient / mclient.apf < prev    next >
Text File  |  1994-05-08  |  472b  |  30 lines

  1. /*  Application Profile defining
  2. **       client and server applications for "mclient" interface
  3. */
  4. interface I1 {
  5.         protseq = ncadg_ip_udp;
  6.         bindtype = lepm;
  7.         handle = implicit;
  8.         idl= "manager1.idl";
  9. };
  10.  
  11. interface I2 {
  12.     protseq = ncadg_ip_udp;
  13.     bindtype = lepm;
  14.     handle = explicit;
  15.     idl = "manager2.idl";
  16. };
  17.  
  18. application server1 {
  19.         export I1;
  20. }
  21.  
  22. application server2 {
  23.     export I2;
  24. }
  25.  
  26. application client {
  27.         import I1;
  28.     import I2;
  29. }
  30.