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.
36 lines
1.1 KiB
36 lines
1.1 KiB
/******************************Module*Header*******************************\
|
|
* Module Name: wndstuff.rc
|
|
*
|
|
* Created: 09-Dec-1992 10:50:23
|
|
* Author: Kirk Olynyk [kirko]
|
|
*
|
|
* Copyright (c) 1991 Microsoft Corporation
|
|
*
|
|
\**************************************************************************/
|
|
|
|
#include "wndstuff.h"
|
|
|
|
//!!!TODO: Office cannot use resource strings, so built-in codecs will
|
|
//!!! have hardcoded strings for now. Need to figure out how to
|
|
//!!! make these localizable (maybe hardcoded for gdipstat.lib,
|
|
//!!! resource strings for gdiplus.dll?).
|
|
//#define USE_RESOURCE_STRINGS
|
|
#if defined(USE_RESOURCE_STRINGS)
|
|
#include "imgrsrc.rc"
|
|
#endif
|
|
|
|
MainMenu MENU
|
|
BEGIN
|
|
MENUITEM "&Test", MM_TEST
|
|
END
|
|
|
|
#include <windows.h>
|
|
#include "ntverp.h"
|
|
|
|
#define VER_LEGALCOPYRIGHT_YEARS "1981-1999"
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "GDI+ test"
|
|
#define VER_INTERNALNAME_STR "unknown"
|
|
|
|
#include "common.ver"
|