home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / inole2 / chap06 / ikoala / ikoala.rc < prev    next >
Encoding:
Text File  |  1995-05-03  |  1.5 KB  |  64 lines

  1. /*
  2.  * IKOALA.RC
  3.  * IKoala Interface DLL Chapter 6
  4.  *
  5.  * Resource definitions
  6.  *
  7.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  8.  *
  9.  * Kraig Brockschmidt, Microsoft
  10.  * Internet  :  kraigb@microsoft.com
  11.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  12.  */
  13.  
  14.  
  15. #include <windows.h>
  16.  
  17. #ifdef WIN32
  18. #include <winver.h>
  19. #else
  20. #include <ver.h>
  21. #endif
  22.  
  23. //Default is nodebug
  24. #ifndef DEBUG
  25. #define VER_DEBUG                   0
  26. #else
  27. #define VER_DEBUG                   VS_FF_DEBUG
  28. #endif
  29.  
  30. VS_VERSION_INFO VERSIONINFO 
  31.  FILEVERSION        1,0,0,0
  32.  PRODUCTVERSION     1,0,0,0
  33.  FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
  34.  FILEFLAGS          VER_DEBUG
  35. #ifdef WIN32
  36.  FILEOS             VOS_NT_WINDOWS32
  37. #else
  38.  FILEOS             VOS_DOS_WINDOWS16
  39. #endif
  40.  FILETYPE           VFT_DLL
  41.  FILESUBTYPE        VFT_UNKNOWN
  42.  
  43.  BEGIN
  44.    BLOCK "StringFileInfo"
  45.     BEGIN
  46.      BLOCK "040904E4"
  47.       BEGIN
  48.        VALUE "CompanyName",     "Microsoft Corporation\0", "\0"
  49.        VALUE "FileDescription", "IKoala Interface", "\0"
  50.        VALUE "FileVersion",     "1.00\0", "\0"
  51.        VALUE "InternalName",    "IKOALA.DLL", "\0"
  52.        VALUE "LegalCopyright",  "Copyright \251 1993-1995 Microsoft Corp.", "\0"
  53.        VALUE "OriginalFilename","IKOALA.DLL", "\0"
  54.        VALUE "ProductName",     "IKoala Interface", "\0"
  55.        VALUE "ProductVersion",  "1.00\0"
  56.       END
  57.    END
  58.  
  59.    BLOCK "VarFileInfo"
  60.     BEGIN 
  61.      VALUE "Translation", 0x0409, 0x04E4
  62.     END 
  63.  END
  64.