taskmgr.rc 2.35 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 *  Task Manager
 *
 *  Copyright 1999-2001 Brian Palmer
 *
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20
 */
21 22 23

#include "resource.h"

24 25
#pragma code_page(65001)

26
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
27

28 29 30
/*
 Icon
*/
31

32 33
/* Icon with lowest ID value placed first to ensure application icon
   remains consistent on all systems. */
34
/* @makedep: taskmgr.ico */
35 36
IDI_TASKMANAGER         ICON    DISCARDABLE taskmgr.ico

37
/* @makedep: window.ico */
38 39
IDI_WINDOW              ICON    DISCARDABLE window.ico

40
/* @makedep: windowsm.ico */
41 42
IDI_WINDOWSM            ICON    DISCARDABLE windowsm.ico

43 44 45
/*
 Version
*/
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67

VS_VERSION_INFO VERSIONINFO
 FILEVERSION 1,0,0,1
 PRODUCTVERSION 1,0,0,1
 FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
 FILEFLAGS 0x1L
#else
 FILEFLAGS 0x0L
#endif
 FILEOS 0x40004L
 FILETYPE 0x1L
 FILESUBTYPE 0x0L
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040904b0"
        BEGIN
            VALUE "CompanyName", "Brian Palmer\0"
            VALUE "FileDescription", "Task Manager by Brian Palmer\0"
            VALUE "FileVersion", "1.0.0.1\0"
            VALUE "InternalName", "taskmgr\0"
68
            VALUE "LegalCopyright", "Copyright © Brian Palmer 2000\0"
69 70 71 72 73 74 75 76 77 78 79
            VALUE "OriginalFilename", "taskmgr.exe\0"
            VALUE "ProductName", "Task Manager by Brian Palmer\0"
            VALUE "ProductVersion", "1.0.0.1\0"
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        VALUE "Translation", 0x409, 1200
    END
END

80 81 82
/*
 Bitmap
*/
83

84
/* @makedep: traymask.bmp */
85 86
IDB_TRAYMASK            BITMAP  DISCARDABLE traymask.bmp
        
87
/* @makedep: trayicon.bmp */
88 89
IDB_TRAYICON            BITMAP  DISCARDABLE trayicon.bmp

90
/* @makedep: font.bmp */
91
IDB_FONT                BITMAP  DISCARDABLE font.bmp