Cleanup, add scanline mask builder

This commit is contained in:
elasota
2019-12-26 12:58:58 -05:00
parent b10dda4a54
commit c4e93b0ccf
61 changed files with 823 additions and 494 deletions

View File

@@ -369,11 +369,6 @@ Handle NewHandle(Size size);
void DisposeHandle(Handle handle);
long GetHandleSize(Handle handle);
void HNoPurge(Handle hdl); // Marks a handle as not purgeable
void MoveHHi(Handle hdl); // Relocates a block to the top of the heap
void HLock(Handle hdl); // Disable relocation
void HUnlock(Handle hdl); // Re-enable relocation
OSErr PtrAndHand(const void *data, Handle handle, Size size); // Appends data to the end of a handle
void SetHandleSize(Handle hdl, Size newSize);
@@ -384,9 +379,6 @@ void DisposePtr(void *ptr);
Size MaxMem(Size *growBytes);
void PurgeSpace(long *totalFree, long *contiguousFree);
void HSetState(Handle handle, char state);
char HGetState(Handle handle);
OSErr MemError();
void BlockMove(const void *src, void *dest, Size size);