1 #pragma once 2 3 /* 4 * List of all the bitmap overlay resources present in the NT kernel 5 * of Windows XP, Windows Server 2003 and their variations. 6 * See "How to change Windows XP boot logo" at 7 * http://www.reversing.be/article.php?story=20061209171938444 8 * as well as the "Boot Editor for WinXP" program for more details. 9 */ 10 11 #define IDB_BOOT_SCREEN 1 12 #define IDB_HIBERNATE_BAR 2 13 #define IDB_SHUTDOWN_MSG 3 14 #define IDB_BAR_DEFAULT 4 15 #define IDB_LOGO_DEFAULT 5 16 17 #define IDB_WKSTA_HEADER 6 18 #define IDB_WKSTA_FOOTER 7 19 20 #define IDB_BAR_WKSTA 8 21 #define IDB_BAR_HOME 9 22 23 #define IDB_SERVER_LOGO 13 24 #define IDB_SERVER_HEADER 14 25 #define IDB_SERVER_FOOTER 15 26 27 /* Workstation editions Overlays */ 28 #define IDB_TEXT_PROF 10 // Professional 29 #define IDB_TEXT_HOME 11 // Home Edition 30 #define IDB_TEXT_EMBEDDED 12 // Embedded 31 #define IDB_TEXT_SVRFAMILY 13 // Server Family 32 #define IDB_TEXT_DOTNET 16 // .NET 2003 33 #define IDB_TEXT_TABLETPC 17 // Tablet PC Edition 34 #define IDB_TEXT_MEDIACTR 18 // Media Center Edition 35 36 /* Server editions Overlays */ 37 #define IDB_STORAGE_SERVER 16 // Storage Server 38 #define IDB_CLUSTER_SERVER 17 // Compute Cluster Edition 39 #define IDB_STORAGE_SERVER2 18 40 41 /* ReactOS additions */ 42 #define IDB_ROTATING_LINE 19 43 #define IDB_PROGRESS_BAR 20 44 #define IDB_COPYRIGHT 21 45 46 #define IDB_MAX_RESOURCE IDB_COPYRIGHT 47