2019-06-15 17:25:54 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Network Statistics Utility"
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "netstat"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "netstat.exe"
|
|
|
|
#define REACTOS_STR_ORIGINAL_COPYRIGHT "Ged Murphy (gedmurphy@gmail.com)"
|
2006-02-16 23:25:46 +00:00
|
|
|
#include <reactos/version.rc>
|
2019-06-15 17:25:54 +00:00
|
|
|
|
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
[TRANSLATION] Polish translation update (#1916)
Added translation for netstat, utilman and netplwiz. Updated translation of find, reg, rapps, regedit, sndvol32, usetup, hivesys, mmsys, openglcfg, powercfg, sysdm, shellext, browseui, devmgr, msgina, netcfgx, shell32, syssetup, shortcuts and vcdcontroltool.
2019-09-20 19:51:47 +00:00
|
|
|
#ifdef LANGUAGE_PL_PL
|
|
|
|
#include "lang/pl-PL.rc"
|
|
|
|
#endif
|
2021-10-10 12:00:44 +00:00
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
|
|
|
#endif
|