From c7616efb98469590badc68cd33a8b94f9a04ae39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B3zef=20Kucia?= Date: Mon, 3 Dec 2018 19:52:44 +0100 Subject: [PATCH] include: Add ntddvdeo.h. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Józef Kucia Signed-off-by: Alexandre Julliard --- include/Makefile.in | 1 + include/ntddvdeo.h | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 include/ntddvdeo.h diff --git a/include/Makefile.in b/include/Makefile.in index 295374814fc..fd4707832a7 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -472,6 +472,7 @@ SOURCES = \ ntddndis.h \ ntddscsi.h \ ntddstor.h \ + ntddvdeo.h \ ntdef.h \ ntdsapi.h \ ntlsa.h \ diff --git a/include/ntddvdeo.h b/include/ntddvdeo.h new file mode 100644 index 00000000000..d2c078084ad --- /dev/null +++ b/include/ntddvdeo.h @@ -0,0 +1,24 @@ +/* + * Copyright 2018 Józef Kucia for CodeWeavers + * + * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#ifndef _NTDDVDEO_ +#define _NTDDVDEO_ + +DEFINE_GUID(GUID_DEVINTERFACE_DISPLAY_ADAPTER, 0x5b45201d, 0xf2f2, 0x4f3b, 0x85, 0xbb, 0x30, 0xff, 0x1f, 0x95, 0x35, 0x99); + +#endif