1#include <windef.h>
2#include <winuser.h>
3#include "resource.h"
4
5#define REACTOS_STR_FILE_DESCRIPTION    "ReactOS Network Statistics Utility"
6#define REACTOS_STR_INTERNAL_NAME       "netstat"
7#define REACTOS_STR_ORIGINAL_FILENAME   "netstat.exe"
8#define REACTOS_STR_ORIGINAL_COPYRIGHT  "Ged Murphy (gedmurphy@gmail.com)"
9#include <reactos/version.rc>
10
11/* UTF-8 */
12#pragma code_page(65001)
13
14#ifdef LANGUAGE_EN_US
15    #include "lang/en-US.rc"
16#endif
17#ifdef LANGUAGE_PL_PL
18    #include "lang/pl-PL.rc"
19#endif
20#ifdef LANGUAGE_ZH_TW
21    #include "lang/zh-TW.rc"
22#endif
23