set most of trunk svn property eol-style:native
[reactos.git] / reactos / drivers / base / bootvid / vid_xbox.c
index 5700bd1..f8736a9 100644 (file)
-/*\r
- * ReactOS Boot video driver\r
- *\r
- * Copyright (C) 2005 Filip Navara\r
- *\r
- * This program is free software; you can redistribute it and/or\r
- * modify it under the terms of the GNU General Public License\r
- * as published by the Free Software Foundation; either version 2\r
- * of the License, or (at your option) any later version.\r
- *\r
- * This program is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU General Public License\r
- * along with this program; if not, write to the Free Software\r
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.\r
- */\r
-\r
-/* INCLUDES ******************************************************************/\r
-\r
-#include "bootvid.h"\r
-#define NDEBUG\r
-#include <debug.h>\r
-\r
-/* FUNCTIONS *****************************************************************/\r
-\r
-static BOOLEAN NTAPI\r
-VidXboxInitialize(\r
-   IN BOOLEAN SetMode)\r
-{\r
-   return TRUE;\r
-}\r
-\r
-static VOID NTAPI\r
-VidXboxResetDisplay(VOID)\r
-{\r
-}\r
-\r
-static VOID NTAPI\r
-VidXboxCleanUp(VOID)\r
-{\r
-}\r
-\r
-static VOID NTAPI\r
-VidXboxBufferToScreenBlt(\r
-   IN PUCHAR Buffer,\r
-   IN ULONG Left,\r
-   IN ULONG Top,\r
-   IN ULONG Width,\r
-   IN ULONG Height,\r
-   IN ULONG Delta)\r
-{\r
-}\r
-\r
-static VOID NTAPI\r
-VidXboxScreenToBufferBlt(\r
-   OUT PUCHAR Buffer,\r
-   IN ULONG Left,\r
-   IN ULONG Top,\r
-   IN ULONG Width,\r
-   IN ULONG Height,\r
-   IN LONG Delta)\r
-{\r
-}\r
-\r
-static VOID NTAPI\r
-VidXboxBitBlt(\r
-   IN PUCHAR Buffer,\r
-   IN ULONG Left,\r
-   IN ULONG Top)\r
-{\r
-}\r
-\r
-static VOID NTAPI\r
-VidXboxSolidColorFill(\r
-   IN ULONG Left,\r
-   IN ULONG Top,\r
-   IN ULONG Right,\r
-   IN ULONG Bottom,\r
-   IN ULONG Color)\r
-{\r
-}\r
-\r
-static VOID NTAPI\r
-VidXboxDisplayString(\r
-   IN PCSTR String)\r
-{\r
-}\r
-\r
-VID_FUNCTION_TABLE VidXboxTable = {\r
-   VidXboxInitialize,\r
-   VidXboxCleanUp,\r
-   VidXboxResetDisplay,\r
-   VidXboxBufferToScreenBlt,\r
-   VidXboxScreenToBufferBlt,\r
-   VidXboxBitBlt,\r
-   VidXboxSolidColorFill,\r
-   VidXboxDisplayString\r
-};\r
+/*
+ * ReactOS Boot video driver
+ *
+ * Copyright (C) 2005 Filip Navara
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+
+/* INCLUDES ******************************************************************/
+
+#include "bootvid.h"
+#define NDEBUG
+#include <debug.h>
+
+/* FUNCTIONS *****************************************************************/
+
+static BOOLEAN NTAPI
+VidXboxInitialize(
+   IN BOOLEAN SetMode)
+{
+   return TRUE;
+}
+
+static VOID NTAPI
+VidXboxResetDisplay(VOID)
+{
+}
+
+static VOID NTAPI
+VidXboxCleanUp(VOID)
+{
+}
+
+static VOID NTAPI
+VidXboxBufferToScreenBlt(
+   IN PUCHAR Buffer,
+   IN ULONG Left,
+   IN ULONG Top,
+   IN ULONG Width,
+   IN ULONG Height,
+   IN ULONG Delta)
+{
+}
+
+static VOID NTAPI
+VidXboxScreenToBufferBlt(
+   OUT PUCHAR Buffer,
+   IN ULONG Left,
+   IN ULONG Top,
+   IN ULONG Width,
+   IN ULONG Height,
+   IN LONG Delta)
+{
+}
+
+static VOID NTAPI
+VidXboxBitBlt(
+   IN PUCHAR Buffer,
+   IN ULONG Left,
+   IN ULONG Top)
+{
+}
+
+static VOID NTAPI
+VidXboxSolidColorFill(
+   IN ULONG Left,
+   IN ULONG Top,
+   IN ULONG Right,
+   IN ULONG Bottom,
+   IN ULONG Color)
+{
+}
+
+static VOID NTAPI
+VidXboxDisplayString(
+   IN PCSTR String)
+{
+}
+
+VID_FUNCTION_TABLE VidXboxTable = {
+   VidXboxInitialize,
+   VidXboxCleanUp,
+   VidXboxResetDisplay,
+   VidXboxBufferToScreenBlt,
+   VidXboxScreenToBufferBlt,
+   VidXboxBitBlt,
+   VidXboxSolidColorFill,
+   VidXboxDisplayString
+};