reactos/win32ss/gdi/eng/multidisp.c
Hervé Poussineau 9400063aae [WIN32SS] Enable multidisplay driver when required
For now, it is only a stub which returns an error.
2022-04-15 23:09:16 +02:00

25 lines
526 B
C

/*
* PROJECT: ReactOS Win32k subsystem
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
* FILE: win32ss/gdi/eng/multidisp.c
* PURPOSE: Multi-Display driver
* PROGRAMMERS:
*/
/* INCLUDES *******************************************************************/
#include <win32k.h>
#define NDEBUG
#include <debug.h>
BOOL
APIENTRY
MultiEnableDriver(
_In_ ULONG iEngineVersion,
_In_ ULONG cj,
_Inout_bytecount_(cj) PDRVENABLEDATA pded)
{
UNIMPLEMENTED;
return FALSE;
}