Subversion Repositories Kolibri OS

Rev

Rev 1498 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1498 Rev 2216
Line 6... Line 6...
6
 
6
 
7
/******************************************************************************
7
/******************************************************************************
8
 *
8
 *
9
 * 1. Copyright Notice
9
 * 1. Copyright Notice
10
 *
10
 *
11
 * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
11
 * Some or all of this work - Copyright (c) 1999 - 2011, Intel Corp.
12
 * All rights reserved.
12
 * All rights reserved.
13
 *
13
 *
14
 * 2. License
14
 * 2. License
15
 *
15
 *
Line 119... Line 119...
119
 
119
 
120
#ifdef _MSC_VER                 /* disable some level-4 warnings */
120
#ifdef _MSC_VER                 /* disable some level-4 warnings */
121
#pragma warning(disable:4100)   /* warning C4100: unreferenced formal parameter */
121
#pragma warning(disable:4100)   /* warning C4100: unreferenced formal parameter */
Line -... Line 122...
-
 
122
#endif
-
 
123
 
-
 
124
/* Common info for tool signons */
-
 
125
 
-
 
126
#define ACPICA_NAME                 "Intel ACPI Component Architecture"
-
 
127
#define ACPICA_COPYRIGHT            "Copyright (c) 2000 - 2011 Intel Corporation"
-
 
128
 
-
 
129
#if ACPI_MACHINE_WIDTH == 64
-
 
130
#define ACPI_WIDTH          "-64"
-
 
131
 
-
 
132
#elif ACPI_MACHINE_WIDTH == 32
-
 
133
#define ACPI_WIDTH          "-32"
-
 
134
 
-
 
135
#else
-
 
136
#error unknown ACPI_MACHINE_WIDTH
-
 
137
#define ACPI_WIDTH          "-??"
-
 
138
 
-
 
139
#endif
-
 
140
 
-
 
141
/* Macros for signons and file headers */
-
 
142
 
-
 
143
#define ACPI_COMMON_SIGNON(UtilityName) \
-
 
144
    "\n%s\n%s version %8.8X%s [%s]\n%s\n\n", \
-
 
145
    ACPICA_NAME, \
-
 
146
    UtilityName, ((UINT32) ACPI_CA_VERSION), ACPI_WIDTH, __DATE__, \
-
 
147
    ACPICA_COPYRIGHT
-
 
148
 
-
 
149
#define ACPI_COMMON_HEADER(UtilityName, Prefix) \
-
 
150
    "%s%s\n%s%s version %8.8X%s [%s]\n%s%s\n%s\n", \
-
 
151
    Prefix, ACPICA_NAME, \
-
 
152
    Prefix, UtilityName, ((UINT32) ACPI_CA_VERSION), ACPI_WIDTH, __DATE__, \
-
 
153
    Prefix, ACPICA_COPYRIGHT, \
122
#endif
154
    Prefix
123
 
155
 
Line 124... Line 156...
124
#define FILE_SUFFIX_DISASSEMBLY     "dsl"
156
#define FILE_SUFFIX_DISASSEMBLY     "dsl"