1999-04-01 10:16:08 +02:00
|
|
|
/*
|
|
|
|
* TTY bitmap driver
|
|
|
|
*
|
|
|
|
* Copyright 1999 Patrik Stridvall
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1999-04-01 10:16:08 +02:00
|
|
|
*/
|
|
|
|
|
2001-11-06 21:57:11 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2001-01-26 21:43:40 +01:00
|
|
|
#include <string.h>
|
2001-11-06 21:57:11 +01:00
|
|
|
|
2000-11-05 03:05:07 +01:00
|
|
|
#include "gdi.h"
|
1999-04-01 10:16:08 +02:00
|
|
|
#include "ttydrv.h"
|
1999-12-12 00:08:48 +01:00
|
|
|
#include "winbase.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
1999-04-01 10:16:08 +02:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(ttydrv);
|
1999-11-24 00:43:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2002-05-31 20:43:22 +02:00
|
|
|
* GetBitmapBits (TTYDRV.@)
|
1999-11-24 00:43:29 +01:00
|
|
|
*/
|
2002-05-31 20:43:22 +02:00
|
|
|
LONG TTYDRV_GetBitmapBits(HBITMAP hbitmap, void *bits, LONG count)
|
1999-11-24 00:43:29 +01:00
|
|
|
{
|
2002-05-31 20:43:22 +02:00
|
|
|
FIXME("(%x, %p, %ld): stub\n", hbitmap, bits, count);
|
|
|
|
memset(bits, 0, count);
|
|
|
|
return count;
|
1999-12-12 00:08:48 +01:00
|
|
|
}
|
|
|
|
|
1999-11-24 00:43:29 +01:00
|
|
|
/***********************************************************************
|
2002-05-31 20:43:22 +02:00
|
|
|
* SetBitmapBits (TTYDRV.@)
|
1999-11-24 00:43:29 +01:00
|
|
|
*/
|
2002-05-31 20:43:22 +02:00
|
|
|
LONG TTYDRV_SetBitmapBits(HBITMAP hbitmap, const void *bits, LONG count)
|
1999-11-24 00:43:29 +01:00
|
|
|
{
|
2002-05-31 20:43:22 +02:00
|
|
|
FIXME("(%x, %p, %ld): stub\n", hbitmap, bits, count);
|
|
|
|
return count;
|
1999-12-12 00:08:48 +01:00
|
|
|
}
|
2000-08-10 03:16:19 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* TTYDRV_BITMAP_CreateDIBSection
|
|
|
|
*/
|
|
|
|
HBITMAP TTYDRV_BITMAP_CreateDIBSection(
|
2002-03-28 23:22:05 +01:00
|
|
|
TTYDRV_PDEVICE *physDev, BITMAPINFO *bmi, UINT usage,
|
2000-08-10 03:16:19 +02:00
|
|
|
LPVOID *bits, HANDLE section, DWORD offset)
|
|
|
|
{
|
2002-03-28 23:22:05 +01:00
|
|
|
FIXME("(%x, %p, %u, %p, 0x%04x, %ld): stub\n",
|
|
|
|
physDev->hdc, bmi, usage, bits, section, offset);
|
2000-08-10 03:16:19 +02:00
|
|
|
|
|
|
|
return (HBITMAP) NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* TTYDRV_DC_SetDIBitsToDevice
|
|
|
|
*/
|
2002-03-28 23:22:05 +01:00
|
|
|
INT TTYDRV_DC_SetDIBitsToDevice(TTYDRV_PDEVICE *physDev, INT xDest, INT yDest, DWORD cx,
|
2000-08-10 03:16:19 +02:00
|
|
|
DWORD cy, INT xSrc, INT ySrc,
|
|
|
|
UINT startscan, UINT lines, LPCVOID bits,
|
|
|
|
const BITMAPINFO *info, UINT coloruse)
|
|
|
|
{
|
2002-03-28 23:22:05 +01:00
|
|
|
FIXME("(%x, %d, %d, %ld, %ld, %d, %d, %u, %u, %p, %p, %u): stub\n",
|
|
|
|
physDev->hdc, xDest, yDest, cx, cy, xSrc, ySrc, startscan, lines, bits, info, coloruse);
|
2000-08-10 03:16:19 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|