You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
864 B
33 lines
864 B
/******************************Module*Header*******************************\
|
|
* Module Name: wndstuff.rc
|
|
*
|
|
* Created: 23 December 1999
|
|
* Author: Adrian Secchia [asecchia]
|
|
*
|
|
* Copyright (c) 1999 Microsoft Corporation
|
|
*
|
|
\**************************************************************************/
|
|
|
|
#include "wndstuff.h"
|
|
|
|
MainMenu MENU DISCARDABLE
|
|
BEGIN
|
|
POPUP "File"
|
|
BEGIN
|
|
MENUITEM "Open", IDM_OPENFILE
|
|
END
|
|
MENUITEM "Quit", IDM_QUIT
|
|
END
|
|
|
|
|
|
#include <windows.h>
|
|
#include "ntverp.h"
|
|
|
|
#define VER_LEGALCOPYRIGHT_YEARS "1981-2000"
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "GDI+ test"
|
|
#define VER_INTERNALNAME_STR "unknown"
|
|
|
|
#include "common.ver"
|
|
|