Code::Blocks resource error

While making a simple program, I decided to add version info, but when I compile the program, I get this error message in the resource file:
error: expected unqualified-id before numeric constant

When you click on the error message, it goes to the "1 VERSIONINFO" line.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <winver.h>
#include <windows.h> // include for version info constants

1 VERSIONINFO
FILEVERSION 0,1,1,3
PRODUCTVERSION 0,1,1,3
FILETYPE VFT_APP
{
  BLOCK "StringFileInfo"
	 {
		 BLOCK "240904E4"
		 {
			 VALUE "CompanyName", ""
			 VALUE "FileVersion", "1"
			 VALUE "FileDescription", ""
			 VALUE "InternalName", "Jeopardy"
			 VALUE "LegalCopyright", ""
			 VALUE "LegalTrademarks", ""
			 VALUE "OriginalFilename", "Jeopardy.cpp"
			 VALUE "ProductName", "Jeopardy"
			 VALUE "ProductVersion", "1"
		 }
	 }
  BLOCK "VarFileInfo"
	 {
		 VALUE "Translation", 0x2409, 1252
	 }
}


This happens if I use either/ or of the #include files.

The questions I have are

one: what does the error mean?

and

two: how do I fix it?
Topic archived. No new replies allowed.