I'm trying to compile a ressource dll and obtain an error when compiling with MinGW toolchain (not with bc nor ms) : it seems that windres don't accept VERSIONINFO statement ... 
here is where RC file is stopped     
1 VERSIONINFO LOADONCALL MOVEABLE
      FILEVERSION S1VER, S2VER, S3VER, S4VER
      PRODUCTVERSION S1VER, S2VER, S3VER, S4VER
      FILEFLAGSMASK 0
      FILEFLAGS VS_FFI_FILEFLAGSMASK
      FILEOS VOS__WINDOWS32
      FILETYPE VFT_APP
      {
        BLOCK "StringFileInfo"
        {
  with this message
2044 syntax error  (line 2044 is the first line with FILEVERSION)
did anyone have the same problem ?