mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
51 lines
807 B
C++
51 lines
807 B
C++
#include "PLQDOffscreen.h"
|
|
|
|
|
|
OSErr NewGWorld(GWorldPtr *gworld, int depth, Rect *bounds, CTabHandle colorTable, GDHandle device, int flags)
|
|
{
|
|
PL_NotYetImplemented();
|
|
return noErr;
|
|
}
|
|
|
|
void DisposeGWorld(GWorldPtr gworld)
|
|
{
|
|
PL_NotYetImplemented();
|
|
}
|
|
|
|
PixMapHandle GetGWorldPixMap(GWorldPtr gworld)
|
|
{
|
|
PL_NotYetImplemented();
|
|
return nullptr;
|
|
}
|
|
|
|
void LockPixels(PixMapHandle pixmap)
|
|
{
|
|
PL_NotYetImplemented();
|
|
}
|
|
|
|
PicHandle GetPicture(short resID)
|
|
{
|
|
PL_NotYetImplemented();
|
|
return nullptr;
|
|
}
|
|
|
|
void OffsetRect(Rect *rect, int right, int down)
|
|
{
|
|
PL_NotYetImplemented();
|
|
}
|
|
|
|
void DrawPicture(PicHandle pict, Rect *bounds)
|
|
{
|
|
PL_NotYetImplemented();
|
|
}
|
|
|
|
void GetGWorld(CGrafPtr *gw, GDHandle *gdHandle)
|
|
{
|
|
PL_NotYetImplemented();
|
|
}
|
|
|
|
void SetGWorld(CGrafPtr gw, GDHandle gdHandle)
|
|
{
|
|
PL_NotYetImplemented();
|
|
}
|