home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / makedce.zip / EXAMPLES.ZIP / examples / MClient / mclient.mdl < prev    next >
Text File  |  1994-11-20  |  818b  |  35 lines

  1. /*MClient,Multi Server Access Client*/
  2. interface I1 {
  3.     handle = implicit ;
  4.     idl = "manager1.idl" ;
  5.     protseq = ncadg_ip_udp ;
  6.     bindtype = lepm ;
  7.     eptype = unique ;
  8.     ~idlgen_command = pmidlgen  ;
  9.     ~c_file = d:\makedce\examples\mclient\manager1.c ;
  10. } ;
  11. interface I2 {
  12.     handle = explicit ;
  13.     idl = "manager2.idl" ;
  14.     protseq = ncadg_ip_udp ;
  15.     bindtype = lepm ;
  16.     eptype = unique ;
  17.     ~idlgen_command = pmidlgen  ;
  18.     ~c_file = d:\makedce\examples\mclient\manager2.c ;
  19. } ;
  20. application server1 {
  21.     export I1 ;
  22.     ~apf_file = d:\makedce\examples\mclient\mymc.apf ;
  23. } ;
  24. application server2 {
  25.     export I2 ;
  26.     ~apf_file = d:\makedce\examples\mclient\mymc.apf ;
  27. } ;
  28. application client {
  29.     import I1 ;
  30.     import I2 ;
  31.     nthreads = 1 ;
  32.     ~apf_file = d:\makedce\examples\mclient\mymc.apf ;
  33.     ~fmain = mclient.c ;
  34. } ;
  35.