mirror of
https://github.com/reactos/reactos.git
synced 2024-11-08 07:38:34 +00:00
25 lines
485 B
Text
25 lines
485 B
Text
|
#include <windows.h>
|
||
|
#include <commctrl.h>
|
||
|
#include "resource.h"
|
||
|
|
||
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Document Editor\0"
|
||
|
#define REACTOS_STR_INTERNAL_NAME "wordpad\0"
|
||
|
#define REACTOS_STR_ORIGINAL_FILENAME "wordpad.exe\0"
|
||
|
//#include <reactos/version.rc>
|
||
|
|
||
|
STRINGTABLE DISCARDABLE
|
||
|
BEGIN
|
||
|
IDS_APPNAME "WordPad"
|
||
|
IDS_VERSION "v0.1"
|
||
|
END
|
||
|
|
||
|
IDI_ICON ICON "res/wordpad.ico"
|
||
|
|
||
|
/* main toolbar icons */
|
||
|
IDB_TEXTTOOLBAR BITMAP DISCARDABLE "res/toolbar.bmp"
|
||
|
|
||
|
#include "rsrc.rc"
|
||
|
|
||
|
|
||
|
|