Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 1849 → Rev 1848

/programs/develop/c--/trunk/directiv.h--
141,7 → 141,7
_llseek(dll,fptr+6,0); _lread(dll,#nsect,2); // Number of sections
delta=export;
i=1;
WHILE(i<=nsect){
while(i<=nsect){
EAX=i; EAX--; EAX=EAX*40; EAX+=260; EAX+=fptr; // fptr+260+40*(i-1)
_llseek(dll,EAX,0); _lread(dll,#base,4); // RVA of section
IF(base<=export){
273,7 → 273,7
linenum2++; // Ž¡­ à㦥­ ª®­¥æ áâப¨
totallines++;
}
else IF(AL=='}'){ // ¡«®ª § ªàëâ
else if(AL=='}'){ // ¡«®ª § ªàëâ
count--;
IF(count==0){ // ª®­¥æ ¯à®æ¥¤ãàë
ESI><inptr2;
/programs/develop/c--/trunk/tree.h--
1,4 → 1,3
#define STRING_ERROR "string found in tree when trying to add to it"
// ---- ‡ ­¥á¥­¨¥ ¯®¨¬¥­®¢ ­­®© ª®­áâ ­âë ¢ ᯨ᮪
AddConstToTree(dword keystring,constvalue)
dword ptr,newptr; // idrec structure
33,7 → 32,7
}
ptr=DSDWORD[ESI+right];
}
ELSE internalerror(STRING_ERROR);
ELSE internalerror("string found in tree when trying to add to it");
}
}
// ”®à¬¨à㥬 ­®¢ãî § ¯¨áì ¢ ᯨ᪥
111,7 → 110,7
}
ptr=DSDWORD[ESI+right];
}
ELSE internalerror(STRING_ERROR);
ELSE internalerror("string found in tree when trying to add to it");
}
}
ESI=newptr;