home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / makedce.zip / EXAMPLES.ZIP / examples / Array / README < prev   
Text File  |  1994-05-08  |  2KB  |  54 lines

  1. This directory contains four files:
  2.  
  3. README    - this file
  4.  
  5. Makefile  - general makefile 
  6.  
  7. atypes.h   - data structures for array.c program
  8.  
  9. array.c   - main program of the DCE aware array application.
  10.             this program uses explicit handles to checks for different
  11.             array operations in DCE.
  12.  
  13. caux.c    - contains the client_aux() function which is called 
  14.             by the main program (array.c); calls functions in manager.c
  15.  
  16. manager.c - array operations to be executed; the remote
  17.             functions to be called in the distributed DCE application.
  18.  
  19. array.idl - correct IDL file for manager.c. The file generated
  20.             by IDLGEN has to be fixed manually by the user.
  21.             The original file is idl.org.
  22.             DO NOT DELETE THIS FILE
  23.                        
  24.  
  25. array.acf - ACF file for the IDL file array.idl
  26.             The original file is acf.org.
  27.             DO NOT DELETE THIS FILE.
  28.  
  29. array.apf - apllication profile for the MakeDCE client and server
  30.             applications.
  31.  
  32. when you type "nmake" you should get the following message:
  33.  
  34. Do one of yhe following:
  35. 1. nmake help - to display this maessage.
  36. 2. nmake clean - to delete then non-source files.
  37. 4. nmake array.idl - to make the IDL file for manager.c.
  38. 6. nmake client - to make the client side of 'alias'.
  39. 7. nmake server - to make the server side of 'alias'.
  40.  
  41. ATTENTION:
  42.    The "rpcd" deamon should be running, in order for the client and
  43.    server to run properly.
  44.  
  45.    If for some reason yu can not run "rpcd", use "string" bindtype
  46.    in array.apf, or use fixed endpoint.
  47.  
  48.    To create the DCE application you must execute four steps:
  49.    1. copy acf.org array.acf
  50.    2. copy idl.org array.idl
  51.        alternatively, make array.idl and fix it according to array.idl.org                          
  52.    3. nmake client
  53.    4. nmake server
  54.