Hi,
I loaded down the MAsm32v8 package. But there seems to be some errors in the Includefile WINDOWS.inc.

Compiling a source I get following errors for the QUOTA_LIMITS STRUCT, POINTFLOAT STRUCT and the GLYPHMETRICSFLOAT STRUCT :


0000001C C QUOTA_LIMITS STRUCT
C PagedPoolLimit DWORD <>
E:\masm32\include\windows.inc(26860) : error A2167: unexpected literal found in expression
C NonPagedPoolLimit DWORD <>
E:\masm32\include\windows.inc(26861) : error A2167: unexpected literal found in expression
00000000 00000000 C MinimumWorkingSetSize DWORD ?
00000004 00000000 C MaximumWorkingSetSize DWORD ?
C PagefileLimit DWORD <>
E:\masm32\include\windows.inc(26864) : error A2167: unexpected literal found in expression
00000008 0000000000000000 C TimeLimit LARGE_INTEGER <>
C QUOTA_LIMITS ENDS



00000008 C POINTFLOAT STRUCT
C x FLOAT <>
E:\masm32\include\windows.inc(27084) : error A2167: unexpected literal found in expression
C y FLOAT <>
E:\masm32\include\windows.inc(27085) : error A2167: unexpected literal found in expression
C POINTFLOAT ENDS


00000018 C GLYPHMETRICSFLOAT STRUCT
C gmfBlackBoxX FLOAT <>
E:\masm32\include\windows.inc(27089) : error A2167: unexpected literal found in expression
C gmfBlackBoxY FLOAT <>
E:\masm32\include\windows.inc(27090) : error A2167: unexpected literal found in expression
C gmfptGlyphOrigin POINTFLOAT <>
E:\masm32\include\windows.inc(27091) : error A2167: unexpected literal found in expression
C gmfCellIncX FLOAT <>
E:\masm32\include\windows.inc(27092) : error A2167: unexpected literal found in expression
C gmfCellIncY FLOAT <>
E:\masm32\include\windows.inc(27093) : error A2167: unexpected literal found in expression
C GLYPHMETRICSFLOAT ENDS

I'm not shure but I think the <> brackets could be replaced bei a question mark for these cases.

Am I right?

Greetings
Gerhard.
Posted on 2003-03-30 07:02:58 by Gerhard Putschalka
Do a search and replace from DWORD <> to DWORD ?
Same for FLOAT and any others for the same error number.

You could have looked up the answer yourself by using Search for this board.

Regards, P1
Posted on 2003-03-31 15:08:55 by Pone
Hi P1,
thank you, it works.
But I'm sorry. I tried several times with different arguments to find an entry in the board with the solution of my problem. But I was not succesful.
Regard
Gerhard.
Posted on 2003-04-02 08:40:16 by Gerhard Putschalka