AppleWin/source/frontends/ncurses/bitmaps.cpp

15 lines
293 B
C++
Raw Normal View History

#include "StdAfx.h"
#include "Log.h"
2020-10-09 09:46:15 +01:00
HBITMAP LoadBitmap(HINSTANCE hInstance, const char * filename)
{
2020-10-09 09:46:15 +01:00
LogFileOutput("LoadBitmap: not loading resource %s\n", filename);
return nullptr;
}
LONG GetBitmapBits(HBITMAP hbit, LONG cb, LPVOID lpvBits)
{
memset(lpvBits, 0, cb);
return cb;
}