README.TXT
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:3k
源码类别:

Windows编程

开发平台:

Visual C++

  1. HELLO
  2. The HELLO program is a client/server implementation of the classic "Hello,
  3. world" program.
  4. FILES
  5. =====
  6. The directory samplesrpchello contains the following files for
  7. building the sample distributed application HELLO:
  8. File          Description
  9. README.TXT    Readme file for the HELLO sample
  10. HELLO.IDL     Interface definition language file
  11. HELLO.ACF     Attribute configuration file
  12. HELLOC.C      Client main program
  13. HELLOS.C      Server main program
  14. HELLOP.C      Remote procedures
  15. MAKEFILE      Nmake file to build for Windows NT or Windows 95
  16. MAKEFILE.DOS  Nmake file to build for MS-DOS
  17. -------------------------------------------
  18. BUILDING CLIENT AND SERVER APPLICATIONS FOR
  19. MICROSOFT WINDOWS NT OR WINDOWS 95 
  20. -------------------------------------------
  21. The following environment variables should be already set for you:
  22.   
  23.   set CPU=i386
  24.   set INCLUDE=%SDKROOT%h
  25.   set LIB=%SDKROOT%lib
  26.   set PATH=%SDKROOT%system32;%SDKROOT%bin
  27. where %SDKROOT% is the root directory for the 32-bit Windows SDK.
  28. For mips, set CPU=mips
  29. For alpha, set CPU=alpha
  30. Build the sample distributed application:
  31.   nmake cleanall
  32.   nmake
  33. This builds the executable programs helloc.exe (client) and 
  34. hellos.exe (server).
  35. ------------------------------------------
  36. BUILDING THE CLIENT APPLICATION FOR MS-DOS
  37. ------------------------------------------
  38. After installing the Microsoft Visual C/C++ version 1.50 development
  39. environment and the 16-bit RPC SDK on a Windows NT or Windows 95
  40. computer, you can build the sample client application from Windows NT
  41. or Windows 95:
  42.   nmake -f makefile.dos cleanall
  43.   nmake -f makefile.dos
  44. This builds the client application helloc.exe.
  45. You may also execute the Microsoft Visual C/C++ compiler under 
  46. MS-DOS. This requires a two-step build process.
  47.   Step One: Compile the .IDL files under Windows NT or Windows 95:
  48.      nmake -a -f makefile.dos hello.h
  49.   Step Two: Compile the C sources (stub and application) under 
  50.     MS-DOS:
  51.      nmake -f makefile.dos
  52. ------------------------------------------
  53. RUNNING THE CLIENT AND SERVER APPLICATIONS
  54. ------------------------------------------
  55. On the server, enter:
  56.   hellos
  57. On the client, enter:
  58.   net start workstation
  59.   helloc
  60. Note: The client and server applications can run on the same 
  61. Microsoft Windows NT computer when you use different screen groups.
  62. Several command-line switches are available to change settings for 
  63. this program. For a listing of the switches available from the client 
  64. program, enter:
  65.   helloc -?
  66. For a listing of switches available from the server
  67. program, enter:
  68.   hellos -?