66 lines
1.6 KiB
Plaintext
66 lines
1.6 KiB
Plaintext
|
/*
|
||
|
* OLE2UI.RC
|
||
|
*
|
||
|
* Icon, menus, strings, and dialogs for the OLE 2.0 UI Support Library.
|
||
|
*
|
||
|
* Copyright (c)1992 Microsoft Corporation, All Right Reserved
|
||
|
*/
|
||
|
|
||
|
#undef PURE
|
||
|
|
||
|
//fix bug when building on daytona 567
|
||
|
//BUGBUG: this is hacky, we need a better long term solution, the basic
|
||
|
//problem is that the rpc header file makes rc choke and die
|
||
|
#define __RPCNDR_H__
|
||
|
|
||
|
#include "ole2ui.h"
|
||
|
|
||
|
#if defined( IBCLS )
|
||
|
#define SZCLASSICONBOX IBCLS
|
||
|
#define SZCLASSRESULTIMAGE RICLS
|
||
|
#endif
|
||
|
|
||
|
/* If "IBCLS" and "RICLS" are NOT defined as command line arguments to the
|
||
|
* RC command, then we assume there is a "uiclass.h" file which defines the
|
||
|
* two symbols "SZCLASSICONBOX" and "SZCLASSRESULTIMAGE". These need to be
|
||
|
* unique strings; they are normally built by composing the name of the
|
||
|
* "LIBNAME" or "APPNAME" with the strings "IBCls" and "RICls"
|
||
|
* respectively.
|
||
|
*/
|
||
|
#if !defined( SZCLASSICONBOX )
|
||
|
#include "uiclass.h"
|
||
|
#endif
|
||
|
|
||
|
//Default 'document' icon
|
||
|
//DefIcon ICON default.ico
|
||
|
|
||
|
//Bitmaps for ResultImage control
|
||
|
IDB_RESULTSEGA BITMAP egares.bmp
|
||
|
IDB_RESULTSVGA BITMAP vgares.bmp
|
||
|
IDB_RESULTSHIRESVGA BITMAP hivgares.bmp
|
||
|
|
||
|
// Version Verification Resource (see OLE2UI.H)
|
||
|
VERIFICATION RCDATA
|
||
|
BEGIN
|
||
|
OLEUI_VERSION_MAGIC
|
||
|
END
|
||
|
|
||
|
//Include string tables here.
|
||
|
#include "strings.rc"
|
||
|
|
||
|
//Include each dialog template here.
|
||
|
#include "insobj.dlg"
|
||
|
#include "icon.dlg"
|
||
|
#include "links.dlg"
|
||
|
#include "pastespl.dlg"
|
||
|
#include "busy.dlg"
|
||
|
#include "convert.dlg"
|
||
|
#include "fileopen.dlg"
|
||
|
#include "prompt.dlg"
|
||
|
|
||
|
// Only include the version resource if we are compiling the DLL version
|
||
|
#ifdef DLL_VER
|
||
|
//Version Information
|
||
|
#include "OLE2UI.RCV"
|
||
|
#endif
|