git-svn-id: svn://kolibrios.org@1848 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Yogev Ezra 2011-02-05 17:41:24 +00:00
parent b544cbacf0
commit 0c96c62ef9
3 changed files with 3 additions and 5 deletions

View File

@ -822,7 +822,7 @@ G01:
}
else IF(tok==tk_from){
NextTok();
SHOW("count = DoFrom(1);\n");
WRITESTR("count = DoFrom(1);\n");
i=size*elements;
i-=count;
loop(i)OP(byte 0);
@ -830,7 +830,7 @@ G01:
}
else IF(tok==tk_extract){
NextTok();
SHOW("count = DoExtract(1);\n");
WRITESTR("count = DoExtract(1);\n");
i=size*elements;
i-=count;
loop(i)OP(byte 0);

View File

@ -1,6 +1,4 @@
//===== ƒ«®¡ «ì­ë¥ ª®­áâ ­âë
#define SHOW "WRITESTR"
// ----
#define STD_INPUT_HANDLE -10
#define STD_OUTPUT_HANDLE -11
#define STD_ERROR_HANDLE -12

View File

@ -108,7 +108,7 @@ dword diskout; // Handle
byte exefile[FILENAMESIZE];
{
wsprintfA(#exefile,"%s.EXE",#rawfilename);
SHOW(#exefile);
WRITESTR(#exefile);
diskout=_lcreat(#exefile,0);
IF(EAX==0){
wsprintfA(#mapstr,"ERROR, unable to create output file %s.\n",#exefile);