Blame res/resource.rc

Packit Service 7770af
#include <windows.h>
Packit Service 7770af
Packit Service 7770af
// DLL version information.
Packit Service 7770af
VS_VERSION_INFO    VERSIONINFO
Packit Service 7770af
FILEVERSION        1,0,0,0
Packit Service 7770af
PRODUCTVERSION     1,0,0,0
Packit Service 7770af
FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
Packit Service 7770af
#ifdef _DEBUG
Packit Service 7770af
  FILEFLAGS        VS_FF_DEBUG | VS_FF_PRERELEASE
Packit Service 7770af
#else
Packit Service 7770af
  FILEFLAGS        0
Packit Service 7770af
#endif
Packit Service 7770af
FILEOS             VOS_NT_WINDOWS32
Packit Service 7770af
FILETYPE           VFT_DLL
Packit Service 7770af
FILESUBTYPE        VFT2_UNKNOWN
Packit Service 7770af
BEGIN
Packit Service 7770af
  BLOCK "StringFileInfo"
Packit Service 7770af
  BEGIN
Packit Service 7770af
    BLOCK "080904b0"
Packit Service 7770af
    BEGIN
Packit Service 7770af
      VALUE "CompanyName", "Sass Open Source Foundation"
Packit Service 7770af
      VALUE "FileDescription", "A C/C++ implementation of a Sass compiler"
Packit Service 7770af
      VALUE "FileVersion", "0.9.0.0"
Packit Service 7770af
      VALUE "InternalName", "libsass"
Packit Service 7770af
      VALUE "LegalCopyright", "\251 2017 libsass.org"
Packit Service 7770af
      VALUE "OriginalFilename", "libsass.dll"
Packit Service 7770af
      VALUE "ProductName", "LibSass Library"
Packit Service 7770af
      VALUE "ProductVersion", "0.9.0.0"
Packit Service 7770af
    END
Packit Service 7770af
  END
Packit Service 7770af
  BLOCK "VarFileInfo"
Packit Service 7770af
  BEGIN
Packit Service 7770af
    VALUE "Translation", 0x809, 1200
Packit Service 7770af
  END
Packit Service 7770af
END