From: hutch-- - edittext
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,0,0
PRODUCTVERSION 1,0,0,0
FILEOS 0
FILETYPE VFT_APP
Question:
rsrc.rc (22): error RC2104 : undefined keyword or key name: VFT_APP
Just put FILETYPE 1
thx.
...or get the updated resource.h file...
http://www.masm32.com/board/index.php?topic=12791.0
i put a few constants in my resource file like so...
;########################################################
#include "\masm32\include\resource.h"
#ifndef CREATEPROCESS_MANIFEST_RESOURCE_ID
#define CREATEPROCESS_MANIFEST_RESOURCE_ID 1
#endif
#ifndef RT_MANIFEST
#define RT_MANIFEST 24
#endif
#ifndef VS_VERSION_INFO
#define VS_VERSION_INFO 1
#endif
#ifndef VOS_NT_WINDOWS32
#define VOS_NT_WINDOWS32 0x00040004L
#endif
#ifndef VFT_APP
#define VFT_APP 0x00000001L
#endif
;########################################################
that way, it works the same way whether they use an older resource.h file or a newer one :U
:U