AppleWin/source/frontends/ncurses/bitmaps.cpp
Andrea Odetti f3bff96968 First draft of the SDL2 port.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2020-02-08 10:21:13 +00:00

14 lines
308 B
C++

#include "StdAfx.h"
#include "Log.h"
HBITMAP LoadBitmap(HINSTANCE hInstance, const std::string & filename)
{
LogFileOutput("LoadBitmap: not loading resource %s\n", filename.c_str());
return nullptr;
}
LONG GetBitmapBits(HBITMAP hbit, LONG cb, LPVOID lpvBits)
{
memset(lpvBits, 0, cb);
return cb;
}