home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / ipc / namepipe / npserver / server32.rc < prev    next >
Encoding:
Text File  |  1997-10-05  |  3.1 KB  |  89 lines

  1.  
  2. //-----------------------------------------------------------------------------
  3. // This is a part of the Microsoft Source Code Samples. 
  4. // Copyright (C) 1993-1997 Microsoft Corporation.
  5. // All rights reserved. 
  6. //  
  7. // This source code is only intended as a supplement to 
  8. // Microsoft Development Tools and/or WinHelp documentation.
  9. // See these sources for detailed information regarding the 
  10. // Microsoft samples programs.
  11. //-----------------------------------------------------------------------------
  12.  
  13. #include "windows.h"
  14. #include "server32.h"
  15.  
  16. npserver ICON npserver.ico
  17. MidLive BITMAP midlive.bmp
  18. MidDead BITMAP middead.bmp
  19. EndLive BITMAP endlive.bmp
  20. EndDead BITMAP enddead.bmp
  21.  
  22. STRINGTABLE
  23. BEGIN
  24.     IDS_WRONGOS     "CreateNamedPipe will only work on Windows NT."
  25.     IDS_WINDOWTITLE "Server32 Named Pipe Sample"
  26.     IDS_ERRORCODE   "Error return code from CreateNamedPipe = %li."
  27.     IDS_DEBUGTITLE  "Debug Window"
  28.     IDS_READERROR   "ReadFile Error in ServerProc()= %d"
  29.     IDS_DEBUGINFO   "Debug Information"
  30.     IDS_DEBUGLAST   "Debug,TellAll:"
  31. END
  32.  
  33. VS_VERSION_INFO VERSIONINFO
  34.  FILEVERSION 4,0,0,0
  35.  PRODUCTVERSION 4,0,0,0
  36.  FILEFLAGSMASK 0x3fL
  37. #ifdef _DEBUG
  38.  FILEFLAGS 0xbL
  39. #else
  40.  FILEFLAGS 0xaL
  41. #endif
  42.  FILEOS 0x10001L
  43.  FILETYPE 0x1L
  44.  FILESUBTYPE 0x0L
  45. BEGIN
  46.     BLOCK "StringFileInfo"
  47.     BEGIN
  48.         BLOCK "040904E4"
  49.         BEGIN
  50.             VALUE "CompanyName", "Microsoft Corporation\0"
  51.             VALUE "FileDescription", "Named Pipe Server Example Application\0"
  52.             VALUE "FileVersion", "Version 4.0\0"
  53.             VALUE "InternalName", "Server32\0"
  54.             VALUE "LegalCopyright", "Copyright (C) Microsoft Corp. 1990-1995\0"
  55.             VALUE "LegalTrademarks", "Microsoft(R) is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation\0"
  56.             VALUE "ProductName", "Server32\0"
  57.             VALUE "ProductVersion", "Version 4.0\0"
  58.         END
  59.         BLOCK "041104E4"
  60.         BEGIN
  61.             VALUE "CompanyName", "Microsoft Corporation\0"
  62.             VALUE "FileDescription", "Named Pipe Server Example Application\0"
  63.             VALUE "FileVersion", "Version 4.0\0"
  64.             VALUE "InternalName", "Server32\0"
  65.             VALUE "LegalCopyright", "Copyright (C) Microsoft Corp. 1990-1995\0"
  66.             VALUE "LegalTrademarks", "Microsoft(R) is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation\0"
  67.             VALUE "ProductName", "Server32\0"
  68.             VALUE "ProductVersion", "Version 4.0\0"
  69.         END
  70.     END
  71.     BLOCK "VarFileInfo"
  72.     BEGIN
  73.         VALUE "Translation", 0x409, 1252, 0x411, 1252
  74.     END
  75. END
  76.  
  77. LANGUAGE LANG_JAPANESE, SUBLANG_NEUTRAL
  78.  
  79. STRINGTABLE
  80. BEGIN
  81.     IDS_WRONGOS     "CreateNamedPipe é═ Windows NT Åπé┼é╠é▌ô«ì∞é╡é▄é╖üB"
  82.     IDS_WINDOWTITLE "Server32 û╝æOòté½âpâCâvü@âTâôâvâï"
  83.     IDS_ERRORCODE   "CreateNamedPipe é⌐éτé╠âGâëü[û▀éΦÆl= %li."
  84.     IDS_DEBUGTITLE  "âfâoâbâOÅεò±"
  85.     IDS_READERROR   "ServerProc() é╠âGâëü[û▀éΦÆl= %d"
  86.     IDS_DEBUGINFO   "âfâoâbâOÅεò±"
  87.     IDS_DEBUGLAST   "âfâoâbâO,TellAll:"
  88. END
  89.