X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=sect.h;h=7f09d6bff314908be0612582c849ffb0ece0d132;hp=735c794d23ee3d6585d5ccca73a35ad60293c3b4;hb=627f87694bf2d7855b8e3cdafe1bf2693f1b60ad;hpb=49cce96fba11282e4244187f15be418d5ae5bb8d diff --git a/sect.h b/sect.h index 735c794..7f09d6b 100644 --- a/sect.h +++ b/sect.h @@ -83,8 +83,8 @@ CHUNK { CHUNK * chnext; // Next, previous chunks in section CHUNK * chprev; LONG chloc; // Base addr of this chunk - LONG challoc; // #bytes allocated for chunk - LONG ch_size; // #bytes chunk actually uses + LONG challoc; // # bytes allocated for chunk + LONG ch_size; // # bytes chunk actually uses char * chptr; // Data for this chunk }; @@ -108,8 +108,8 @@ SECT { MCHUNK { MCHUNK * mcnext; // Next mark chunk PTR mcptr; // Vector of marks - LONG mcalloc; // #marks allocted to mark block - LONG mcused; // #marks used in block + LONG mcalloc; // # marks allocted to mark block + LONG mcused; // # marks used in block }; #define MWORD 0x0000 // Marked word @@ -141,7 +141,7 @@ void savsect(void); int fixtest(int, LONG); int chcheck(LONG); int fixup(WORD, LONG, TOKEN *); -int fixups(void); -int resfix(int); +int ResolveAllFixups(void); +//int ResolveFixups(int); #endif // __SECT_H__