Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 8953 → Rev 8954

/programs/cmm/app_plus/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("app_plus.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "app_plus.com")
tup.rule("app_plus.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "app_plus.com")
/programs/cmm/app_plus/app_plus.c
8,10 → 8,6
#include "..\lib\patterns\restart_process.h"
#include "added_sysdir.c"
 
#ifndef AUTOBUILD
#include "lang.h--"
#endif
 
//===================================================//
// //
// DATA //
/programs/cmm/app_plus/compile_en.bat
1,10 → 1,6
@del lang.h--
@echo #define LANG_ENG 1 >lang.h--
 
@del app_plus
cls
@c-- app_plus.c
@rename app_plus.com app_plus
@c-- /D=LANG=ENG app_plus.c
@del *.
@rename *.com *.
@del warning.txt
@del lang.h--
@pause
 
/programs/cmm/app_plus/compile_ru.bat
1,10 → 1,5
@del lang.h--
@echo #define LANG_RUS 1 >lang.h--
 
@del app_plus
cls
@c-- app_plus.c
@rename app_plus.com app_plus
@c-- /D=LANG=RUS app_plus.c
@del *.
@rename *.com *.
@del warning.txt
@del lang.h--
@pause
/programs/cmm/appearance/appearance.c
1,10 → 1,6
//11.03.12 - start!
//ver 2.31
 
#ifndef AUTOBUILD
?include "lang.h--"
#endif
 
#define MEMSIZE 200*1024
#include "../lib/mem.h"
#include "../lib/strings.h"
/programs/cmm/appearance/compile_en.bat
1,9 → 1,5
@del lang.h--
@echo #define LANG_ENG 1 >lang.h--
 
@C-- appearance.c
@del appearance
@rename appearance.com appearance
@c-- /D=LANG_ENG appearance.c
@del *.
@rename *.com *.
@del warning.txt
@del lang.h--
@pause
@pause
/programs/cmm/appearance/compile_ru.bat
1,9 → 1,5
@del lang.h--
@echo #define LANG_RUS 1 >lang.h--
 
@C-- appearance.c
@del appearance
@rename appearance.com appearance
@c-- /D=LANG_RUS appearance.c
@del *.
@rename *.com *.
@del warning.txt
@del lang.h--
@pause
/programs/cmm/barscfg/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("barscfg.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "barscfg.com")
tup.rule("barscfg.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "barscfg.com")
/programs/cmm/barscfg/barscfg.c
1,7 → 1,3
#ifndef AUTOBUILD
#include "lang.h--"
#endif
 
#define MEMSIZE 0x23E80
#include "..\lib\kolibri.h"
#include "..\lib\strings.h"
/programs/cmm/barscfg/compile_en.bat
1,11 → 1,6
@del lang.h--
@echo #define LANG_ENG 1 >lang.h--
 
@c-- /D=LANG_ENG barscfg.c
@pause
@del barscfg
cls
@c-- barscfg.c
@pause
@echo off
@rename barscfg.com barscfg
@rename *.com *.
@del warning.txt
@del lang.h--
 
/programs/cmm/barscfg/compile_ru.bat
1,10 → 1,6
@del lang.h--
@echo #define LANG_RUS 1 >lang.h--
 
@c-- /D=LANG_RUS barscfg.c
@pause
@del barscfg
cls
@c-- barscfg.c
@pause
@rename barscfg.com barscfg
@rename *.com *.
@del warning.txt
@del lang.h--
 
/programs/cmm/browser/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("WebView.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "WebView.com")
tup.rule("WebView.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "WebView.com")
/programs/cmm/browser/WebView.c
1,10 → 1,6
//Copyright 2007-2020 by Veliant & Leency
//Asper, lev, Lrz, Barsuk, Nable, hidnplayr...
 
#ifndef AUTOBUILD
#include "lang.h--"
#endif
 
//===================================================//
// //
// LIB //
/programs/cmm/browser/compile_en.bat
1,10 → 1,6
@del lang.h--
@echo #define LANG_ENG 1 >lang.h--
 
@c-- WebView.c
@c-- /D=LANG_ENG WebView.c
@del WebView
@rename WebView.com WebView
@del warning.txt
@del lang.h--
 
if not exist WebView ( @pause )
/programs/cmm/browser/compile_ru.bat
1,10 → 1,6
@del lang.h--
@echo #define LANG_RUS 1 >lang.h--
 
@c-- WebView.c
@c-- /D=LANG_RUS WebView.c
@del WebView
@rename WebView.com WebView
@del warning.txt
@del lang.h--
 
if not exist WebView ( @pause )
/programs/cmm/clipview/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("clipview.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "clipview.com")
tup.rule("clipview.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "clipview.com")
/programs/cmm/dicty/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("dicty.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "dicty.com")
tup.rule("dicty.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "dicty.com")
/programs/cmm/diff/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("diff.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "diff.com")
tup.rule("diff.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "diff.com")
/programs/cmm/downloader/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("dl.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "dl.com")
tup.rule("dl.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "dl.com")
/programs/cmm/downloader/compile_en.bat
1,10 → 1,6
@del lang.h--
@echo #define LANG_ENG 1 >lang.h--
 
@c-- dl.c
@c-- /D=LANG_ENG dl.c
@del dl
@rename dl.com dl
@del warning.txt
@del lang.h--
 
if not exist dl ( @pause )
/programs/cmm/downloader/compile_ru.bat
1,10 → 1,6
@del lang.h--
@echo #define LANG_RUS 1 >lang.h--
 
@c-- dl.c
@c-- /D=LANG_RUS dl.c
@del dl
@rename dl.com dl
@del warning.txt
@del lang.h--
 
if not exist dl ( @pause )
/programs/cmm/downloader/const.h
1,9 → 1,5
//Copyright 2020 by Leency
 
#ifndef AUTOBUILD
#include "lang.h--"
#endif
 
#ifdef LANG_RUS
#define DL_WINDOW_HEADER "Œ¥­¥¤¦¥à § £à㧮ª"
#define T_DOWNLOAD "‘ª ç âì"
/programs/cmm/drvinst/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("drvinst.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "drvinst.com")
tup.rule("drvinst.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "drvinst.com")
/programs/cmm/drvinst/compile_en.bat
1,10 → 1,6
@del lang.h--
@echo #define LANG_ENG 1 >lang.h--
 
@c-- /D=LANG_RUS drvinst.c
@del *.kex
@c-- drvinst.c
@rename *.com *.kex
@del warning.txt
@del lang.h--
 
@pause
/programs/cmm/drvinst/compile_ru.bat
1,10 → 1,6
@del lang.h--
@echo #define LANG_RUS 1 >lang.h--
 
@c-- /D=LANG_RUS drvinst.c
@del *.kex
@c-- drvinst.c
@rename *.com *.kex
@del warning.txt
@del lang.h--
 
@pause
/programs/cmm/drvinst/drvinst.c
1,9 → 1,5
#define MEMSIZE 4096*20
 
#ifndef AUTOBUILD
#include "lang.h--"
#endif
 
//===================================================//
// //
// LIB //
/programs/cmm/examples/Tupfile.lua
3,10 → 3,10
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("window.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "window.com")
tup.rule("collections.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "collections.com")
tup.rule("menu.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "menu.com")
tup.rule("rgb.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "rgb.com")
tup.rule("console.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "console.com")
tup.rule("pigex.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "pigex.com")
tup.rule("math.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "math.com")
tup.rule("window.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "window.com")
tup.rule("collections.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "collections.com")
tup.rule("menu.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "menu.com")
tup.rule("rgb.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "rgb.com")
tup.rule("console.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "console.com")
tup.rule("pigex.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "pigex.com")
tup.rule("math.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "math.com")
/programs/cmm/examples/compile_en.bat
1,6 → 1,6
@del *.kex
 
For /R %%i In (*.c) Do c-- "%%i"
For /R %%i In (*.c) Do c-- /D=LANG_ENG "%%i"
 
@rename *.com *.kex
@mkdir bin
/programs/cmm/iconedit/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("iconedit.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "iconedit.com")
tup.rule("iconedit.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "iconedit.com")
/programs/cmm/iconedit/compile_en.bat
1,12 → 1,7
@del lang.h--
@echo #define LANG_ENG 1 >lang.h--
@c-- /D=LANG_ENG iconedit.c
@del iconedit
cls
 
@c-- iconedit.c
@rename *.com *.
@del warning.txt
@del lang.h--
 
if exist iconedit (
"C:\Program Files (x86)\WinImage\winimage.exe" "D:\Kolibri\Desktop\kolibri.img" /H /Q /I iconedit
/programs/cmm/iconedit/compile_ru.bat
1,12 → 1,7
@del lang.h--
@echo #define LANG_RUS 1 >lang.h--
@c-- /D=LANG_ENG iconedit.c
@del iconedit
cls
 
@c-- iconedit.c
@rename *.com *.
@del warning.txt
@del lang.h--
 
if exist iconedit (
"C:\Program Files (x86)\WinImage\winimage.exe" "D:\Kolibri\Desktop\kolibri.img" /H /Q /I iconedit
/programs/cmm/iconedit/iconedit.c
21,10 → 21,6
 
#include "colors_mas.h"
 
#ifndef AUTOBUILD
#include "lang.h--"
#endif
 
//===================================================//
// //
// DATA //
/programs/cmm/kf_font_viewer/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("font_viewer.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "font_viewer.com")
tup.rule("font_viewer.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "font_viewer.com")
/programs/cmm/kf_font_viewer/compile_en.bat
1,5 → 1,5
@del "kf_view"
@C-- "font_viewer.c"
@rename "font_viewer.com" "kf_view"
@del kf_view
@C-- font_viewer.c
@rename font_viewer.com kf_view
@del warning.txt
@pause
/programs/cmm/menu/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("menu.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "menu.com")
tup.rule("menu.c", "c-- %f" .. tup.getconfig("KPACK_CMD"), "menu.com")
/programs/cmm/misc/build.bat
1,9 → 1,7
@echo off
 
echo #define LANG_ENG 1 >lang.h--
For /R %%i In (*.c) Do c-- /D=LANG_ENG "%%i"
 
For /R %%i In (*.c) Do c-- "%%i"
 
mkdir bin
del bin\*.* /Q
move *.com bin
14,6 → 12,5
cd ..
 
del warning.txt
del lang.h--
 
pause
/programs/cmm/misc/easyshot.c
8,10 → 8,6
#include "../lib/obj/box_lib.h"
#include "../lib/obj/proc_lib.h"
 
#ifndef AUTOBUILD
#include "lang.h--"
#endif
 
/* === TRANSLATIONS === */
 
#ifdef LANG_RUS
/programs/cmm/misc/install.c
9,10 → 9,6
 
#include "../lib/patterns/restart_process.h"
 
#ifndef AUTOBUILD
#include "lang.h--"
#endif
 
char logo[] = "
ÛÛÛÛ ÛÛÛÛ ÛÛÛÛÛÛÛÛÛÛ ÛÛÛÛ ÛÛÛÛ ÛÛÛÛÛÛÛÛÛÛÛ
ÛÛÛÛ ÛÛ ÛÛÛ ÛÛÛ ÛÛÛ ÛÛ ÛÛÛ ÛÛ
/programs/cmm/misc/mblocks.c
12,10 → 12,6
 
#include "..\lib\obj\libimg.h"
 
#ifndef AUTOBUILD
#include "lang.h--"
#endif
 
#define BTN_CLOSED 0
#define BTN_PRESSED 1
#define BTN_OPEN 2
/programs/cmm/misc/osupdate.c
10,10 → 10,6
 
#include "../lib/patterns/restart_process.h"
 
#ifndef AUTOBUILD
#include "lang.h--"
#endif
 
bool install_complete = false;
_http http;
 
/programs/cmm/mousecfg/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("mousecfg.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "mousecfg.com")
tup.rule("mousecfg.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "mousecfg.com")
/programs/cmm/mousecfg/compile_en.bat
1,11 → 1,5
@del lang.h--
@echo #define LANG_ENG 1 >lang.h--
 
@c-- /D=LANG_ENG mousecfg.c
@del mousecfg
cls
@c-- mousecfg.c
@rename mousecfg.com mousecfg
@kpack mousecfg
@del warning.txt
@del lang.h--
@pause
/programs/cmm/mousecfg/compile_ru.bat
1,11 → 1,5
@del lang.h--
@echo #define LANG_RUS 1 >lang.h--
 
@c-- /D=LANG_ENG mousecfg.c
@del mousecfg
cls
@c-- mousecfg.c
@rename mousecfg.com mousecfg
@kpack mousecfg
@del warning.txt
@del lang.h--
@pause
/programs/cmm/mousecfg/mousecfg.c
1,9 → 1,5
// Mouse Configuration Utility ver 1.62
 
#ifndef AUTOBUILD
#include "lang.h--"
#endif
 
#define MEMSIZE 4096*11
 
#include "..\lib\strings.h"
/programs/cmm/notes/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("notes.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "notes.com")
tup.rule("notes.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "notes.com")
/programs/cmm/notes/compile.bat
1,9 → 1,5
@del lang.h--
@echo #define LANG_ENG 1 >lang.h--
 
C-- notes.c
C-- /D=LANG_RUS notes.c
@del notes
@rename notes.com notes
@pause
@del lang.h--
@del warning.txt
/programs/cmm/notes/engine.h
1,4 → 1,4
#define MAX_LINE_CHARS 256
#define MAX_LINE_CHARS 128
 
#define CHBOX 12
#define CHECKBOX_ID 50
35,7 → 35,7
 
struct NOTES : llist {
char txt_path[4096];
char txt_data[MAX_LINE_CHARS*LINES_COUNT];
char txt_data[MAX_LINE_CHARS+4*LINES_COUNT+30];
bool txt_file_exists;
 
NOTE_LINE lines[LINES_COUNT];
/programs/cmm/notes/notes.c
1,6 → 1,8
// Notes v1.1
 
#define MEMSIZE 0xDAE80
#define MEMSIZE 1024*40
#define ENTRY_POINT #main
 
#include "..\lib\kolibri.h"
 
#include "..\lib\obj\box_lib.h"
13,10 → 15,6
// //
//===================================================//
 
#ifndef AUTOBUILD
#include "lang.h--"
#endif
 
#ifdef LANG_RUS
?define WINDOW_CAPTION "‡ ¬¥âª¨"
?define DELETE_TEXT "“¤ «¨âì";
39,18 → 37,19
#define DELETE_BTN 4;
#define DELETE_W sizeof(DELETE_TEXT)+2*6
 
proc_info Form;
 
#include "engine.h"
#include "ini.h"
 
edit_box notebox = {NULL,NULL,NULL,COL_BG_ACTIVE,0x94AECE,COL_BG_ACTIVE,0xffffff,0,
proc_info Form;
 
edit_box notebox = {WIN_W-RED_LINE_X-6,RED_LINE_X+5,RED_LINE_X,
COL_BG_ACTIVE, 0x94AECE,COL_BG_ACTIVE,0xffffff,0,
MAX_LINE_CHARS-1,NULL,0,ed_always_focus+ed_focus};
dword lists[] = { 0xEAEAEA, 0xCDCDCD, 0xF0F0F0, 0xD8D8D8, 0 };
 
bool delete_active = false;
bool window_dragable = true;
block delBtn;
block delBtn = { WIN_W-DELETE_W-1, NULL, DELETE_W, RED_LINE_X};
 
//===================================================//
// //
61,7 → 60,6
void main()
{
bool first_redraw=true;
dword cur_line_offset;
load_dll(boxlib, #box_lib_init,0);
 
if (GetCpuFrequency()/1000000>=1000) window_dragable=true; else window_dragable=false;
70,7 → 68,6
 
@SetEventMask(EVM_REDRAW + EVM_KEY + EVM_BUTTON + EVM_MOUSE + EVM_MOUSE_FILTER);
LoadIniSettings();
 
loop() switch(@WaitEvent())
{
case evMouse:
115,7 → 112,7
break;
case evKey:
GetKeys();
@GetKeys();
if (key_modifier&KEY_LCTRL) || (key_modifier&KEY_RCTRL)
{
if (key_scancode == SCAN_CODE_SPACE)
184,19 → 181,6
EventListRedraw();
}
 
void DrawEditBoxN()
{
notebox.width = notes.w-notes.x-8;
notebox.left = notes.x+5;
notebox.offset = notebox.shift = notebox.shift_old = 0;
notebox.cl_curs_x = notebox.cl_curs_y = 0;
notebox.size = strlen(notebox.text);
notebox.flags = ed_always_focus+ed_focus;
if (notebox.pos > notebox.size) notebox.pos = notebox.size;
notebox.top = notes.cur_y*notes.item_h+4+notes.y;
edit_box_draw stdcall(#notebox);
}
 
//===================================================//
// //
// EVENTS //
209,7 → 193,13
notes.cur_y = line_n;
notebox.text = notes.DrawLine(notes.cur_y, notes.item_h);
EventListRedraw();
DrawEditBoxN();
 
notebox.size = strlen(notebox.text);
notebox.offset = notebox.shift = notebox.shift_old = 0;
notebox.cl_curs_x = notebox.cl_curs_y = 0;
if (notebox.pos > notebox.size) notebox.pos = notebox.size;
notebox.top = notes.cur_y*notes.item_h+4+notes.y;
edit_box_draw stdcall(#notebox);
}
 
void EventExitApp()
222,7 → 212,7
void EventDrawDeleteButton()
{
notes.DrawLine(notes.cur_y, notes.item_h);
delBtn.set_size(WIN_W-DELETE_W-1, notes.cur_y*notes.item_h+notes.y, DELETE_W, notes.item_h-1);
delBtn.y = notes.cur_y*notes.item_h+notes.y;
DefineButton(delBtn.x, delBtn.y, delBtn.w, delBtn.h, DELETE_BTN, 0xFF0000);
WriteText(delBtn.x+10, delBtn.h/2-3 + delBtn.y, 0x80, 0xFFFfff, DELETE_TEXT);
notebox.top=-20;
/programs/cmm/pixie2/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("pixie.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "pixie.com")
tup.rule("pixie.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "pixie.com")
/programs/cmm/pixie2/compile_en.bat
1,10 → 1,5
@del lang.h--
@echo #define LANG_ENG 1 >lang.h--
 
@C-- pixie.c
@C-- /D=LANG_ENG pixie.c
@del pixie
@kpack pixie.com
@rename pixie.com pixie
@del warning.txt
@del lang.h--
@pause
/programs/cmm/quark/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("quark.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "quark.com")
tup.rule("quark.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "quark.com")
/programs/cmm/search/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("search.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "search.com")
tup.rule("search.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "search.com")
/programs/cmm/sysmon/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("sysmon.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "sysmon.com")
tup.rule("sysmon.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "sysmon.com")
/programs/cmm/sysmon/compile_en.bat
1,9 → 1,5
@del lang.h--
@echo #define LANG_ENG 1 >lang.h--
 
@del sysmon
@del /D=LANG_ENG sysmon
@c-- sysmon.c
@rename sysmon.com sysmon
@del warning.txt
@del lang.h--
@pause
/programs/cmm/sysmon/compile_ru.bat
1,9 → 1,5
@del lang.h--
@echo #define LANG_RUS 1 >lang.h--
 
@del sysmon
@del /D=LANG_RUS sysmon
@c-- sysmon.c
@rename sysmon.com sysmon
@del warning.txt
@del lang.h--
@pause
/programs/cmm/sysmon/sysmon.c
6,10 → 6,6
 
#define MEMSIZE 4096*30
 
#ifndef AUTOBUILD
#include "lang.h--"
#endif
 
//===================================================//
// //
// LIB //
/programs/cmm/the_bus/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("the_bus.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "the_bus.com")
tup.rule("the_bus.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "the_bus.com")
/programs/cmm/the_bus/compile_en.bat
1,10 → 1,5
@del lang.h--
@echo #define LANG_ENG 1 >lang.h--
 
@del the_bus
@cls
@c-- the_bus.c
@c-- /D=LANG_ENG the_bus.c
@pause
@rename the_bus.com the_bus
@del warning.txt
@del lang.h--
/programs/cmm/the_bus/compile_ru.bat
1,10 → 1,5
@del lang.h--
@echo #define LANG_RUS 1 >lang.h--
 
@del the_bus
@cls
@c-- the_bus.c
@c-- /D=LANG_RUS the_bus.c
@pause
@rename the_bus.com the_bus
@del warning.txt
@del lang.h--
/programs/cmm/tmpdisk/Tupfile.lua
3,4 → 3,4
then C_LANG = "LANG_RUS"
else C_LANG = "LANG_ENG" -- this includes default case without config
end
tup.rule("tmpdisk.c", "c-- /D=AUTOBUILD /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "tmpdisk.com")
tup.rule("tmpdisk.c", "c-- /D=$(C_LANG) %f" .. tup.getconfig("KPACK_CMD"), "tmpdisk.com")
/programs/cmm/tmpdisk/compile_en.bat
1,8 → 1,5
@echo #define LANG_ENG 1 >lang.h--
 
@C-- tmpdisk.c
@C-- /D=LANG_ENG tmpdisk.c
@del tmpdisk
@rename tmpdisk.com tmpdisk
@del warning.txt
@del lang.h--
@pause
/programs/cmm/tmpdisk/compile_ru.bat
1,8 → 1,5
@echo #define LANG_RUS 1 >lang.h--
 
@C-- tmpdisk.c
@C-- /D=LANG_RUS tmpdisk.c
@del tmpdisk
@rename tmpdisk.com tmpdisk
@del warning.txt
@del lang.h--
@pause
/programs/cmm/tmpdisk/tmpdisk.c
4,10 → 4,6
#include "..\lib\strings.h"
#include "..\lib\fs.h"
 
#ifndef AUTOBUILD
#include "lang.h--"
#endif
 
/////////////////////////////////////////////////////////////////////////////////////////
///////////////////////// Program data ////////////////////
/////////////////////////////////////////////////////////////////////////////////////////