test version of startmenu root with big icons
[reactos.git] / reactos / lib / mesa32 / src / drivers / windows / gldirect / ddlog.h
1 /****************************************************************************
2 *
3 * Mesa 3-D graphics library
4 * Direct3D Driver Interface
5 *
6 * ========================================================================
7 *
8 * Copyright (C) 1991-2004 SciTech Software, Inc. All rights reserved.
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a
11 * copy of this software and associated documentation files (the "Software"),
12 * to deal in the Software without restriction, including without limitation
13 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
14 * and/or sell copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included
18 * in all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * SCITECH SOFTWARE INC BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
24 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
25 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
27 *
28 * ======================================================================
29 *
30 * Language: ANSI C
31 * Environment: Windows 9x (Win32)
32 *
33 * Description: Logging functions.
34 *
35 ****************************************************************************/
36
37 #ifndef __DDLOG_H
38 #define __DDLOG_H
39
40 #include <stdio.h>
41
42 #ifndef _USE_GLD3_WGL
43 #include "dderrstr.h" // ddraw/d3d error string
44 #endif
45
46 /*---------------------- Macros and type definitions ----------------------*/
47
48 typedef enum {
49 DDLOG_NONE = 0, // No log output
50 DDLOG_NORMAL = 1, // Log is kept open
51 DDLOG_CRASHPROOF = 2, // Log is closed and flushed
52 DDLOG_METHOD_FORCE_DWORD = 0x7fffffff,
53 } DDLOG_loggingMethodType;
54
55 // Denotes type of message sent to the logging functions
56 typedef enum {
57 DDLOG_INFO = 0, // Information only
58 DDLOG_WARN = 1, // Warning only
59 DDLOG_ERROR = 2, // Notify user of an error
60 DDLOG_CRITICAL = 3, // Exceptionally severe error
61 DDLOG_SYSTEM = 4, // System message. Not an error
62 // but must always be printed.
63 DDLOG_SEVERITY_FORCE_DWORD = 0x7fffffff, // Make enum dword
64 } DDLOG_severityType;
65
66 #ifdef _USE_GLD3_WGL
67 // Synomyms
68 #define GLDLOG_INFO DDLOG_INFO
69 #define GLDLOG_WARN DDLOG_WARN
70 #define GLDLOG_ERROR DDLOG_ERROR
71 #define GLDLOG_CRITICAL DDLOG_CRITICAL
72 #define GLDLOG_SYSTEM DDLOG_SYSTEM
73 #endif
74
75 // The message that will be output to the log
76 static const char *ddlogSeverityMessages[] = {
77 "INFO",
78 "WARN",
79 "ERROR",
80 "*CRITICAL*",
81 "System",
82 };
83
84 /*------------------------- Function Prototypes ---------------------------*/
85
86 #ifdef __cplusplus
87 extern "C" {
88 #endif
89
90 void ddlogOpen(DDLOG_loggingMethodType LoggingMethod, DDLOG_severityType Severity);
91 void ddlogClose();
92 void ddlogMessage(DDLOG_severityType severity, LPSTR message);
93 void ddlogError(DDLOG_severityType severity, LPSTR message, HRESULT hResult);
94 void ddlogPrintf(DDLOG_severityType severity, LPSTR message, ...);
95 void ddlogWarnOption(BOOL bWarnOption);
96 void ddlogPathOption(LPSTR szPath);
97
98 #ifdef _USE_GLD3_WGL
99 // Synomyms
100 #define gldLogMessage ddlogMessage
101 #define gldLogError ddlogError
102 #define gldLogPrintf ddlogPrintf
103 #endif
104
105 #ifdef __cplusplus
106 }
107 #endif
108
109 #endif