mirror of https://github.com/tongzx/nt5src
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.
99 lines
2.8 KiB
99 lines
2.8 KiB
/*****************************************************************************\
|
|
FILE: resource.rc
|
|
|
|
DESCRIPTION:
|
|
resource file (I can't believe I just wrote that)
|
|
|
|
BryanSt 4/4/2000 (Bryan Starbuck)
|
|
Copyright (C) Microsoft Corp 2000-2000. All rights reserved.
|
|
\*****************************************************************************/
|
|
|
|
#include "winres.h"
|
|
#include "resource.h"
|
|
#include "resource.rcv"
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
// Strings
|
|
//-------------------------------------------------------------------------
|
|
/*
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
// IDS_APPEARANCE_THEME_NAME "Windows Classic"
|
|
END
|
|
*/
|
|
|
|
|
|
// Errors
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
IDS_ERROR_MESSAGENUMBER "What are you doing, crack smoker? %s"
|
|
IDS_ERROR_CONVERTIMAGEFAILED "Converting the image failed"
|
|
END
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
// Property Sheets
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
// Dialogs
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
// Files
|
|
//-------------------------------------------------------------------------
|
|
|
|
REGINST REGINST MOVEABLE PURE "selfreg_starbuck.inf"
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
// AVIs
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
// Bitmaps
|
|
//-------------------------------------------------------------------------
|
|
// Go Button
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
// HTML Content
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
// Theme Files Content
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
// Menu
|
|
//-------------------------------------------------------------------------
|
|
IDM_IMAGEMENU MENUEX PRELOAD
|
|
BEGIN
|
|
POPUP ""
|
|
BEGIN
|
|
// POPUP "Convert Image"
|
|
// BEGIN
|
|
MENUITEM "Convert To GIF", IDC_IMAGEMENU_CONVERT_GIF
|
|
MENUITEM "Convert To JPEG", IDC_IMAGEMENU_CONVERT_JPEG
|
|
MENUITEM "Convert To PNG", IDC_IMAGEMENU_CONVERT_PNG
|
|
MENUITEM "Convert To TIFF", IDC_IMAGEMENU_CONVERT_TIFF
|
|
MENUITEM "Convert To BMP", IDC_IMAGEMENU_CONVERT_BMP
|
|
// END
|
|
END
|
|
|
|
END
|