Subversion Repositories Kolibri OS

Rev

Rev 1498 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1498 Rev 2216
Line 7... Line 7...
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
 *
16
 * 2.1. This is your license from Intel Corp. under its intellectual property
16
 * 2.1. This is your license from Intel Corp. under its intellectual property
Line 119... Line 119...
119
#define LINES_IN_LINUX_HEADER               34
119
#define LINES_IN_LINUX_HEADER               34
120
#define LINUX_HEADER_SIGNATURE              " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS"
120
#define LINUX_HEADER_SIGNATURE              " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS"
121
#define LINES_IN_ASL_HEADER                 29 /* Header as output from disassembler */
121
#define LINES_IN_ASL_HEADER                 29 /* Header as output from disassembler */
122
 
122
 
Line -... Line 123...
-
 
123
#include "acpi.h"
-
 
124
#include "accommon.h"
-
 
125
 
123
#include 
126
#include 
124
#include 
127
#include 
125
#include 
128
#include 
126
#include 
129
#include 
127
#include 
130
#include 
Line 130... Line 133...
130
#include 
133
#include 
131
#endif
134
#endif
132
#include 
135
#include 
133
 
136
 
Line 134... Line -...
134
#include "acpi.h"
-
 
135
#include "accommon.h"
-
 
136
 
-
 
Line 137... Line 137...
137
 
137
 
138
/* Fixups for non-Win32 compilation */
-
 
139
#ifndef WIN32
138
/* O_BINARY is not always defined */
140
#ifndef O_BINARY
139
#ifndef O_BINARY
141
#define O_BINARY    0x0
140
#define O_BINARY    0x0
Line -... Line 141...
-
 
141
#endif
-
 
142
 
142
#endif
143
/* Fixups for non-Win32 compilation */
143
 
144
#ifndef WIN32
144
#define mkdir(x) mkdir(x, 0770)
145
#define mkdir(x) mkdir(x, 0770)
Line 276... Line 277...
276
extern ACPI_CONVERSION_TABLE       LinuxConversionTable;
277
extern ACPI_CONVERSION_TABLE       LinuxConversionTable;
277
extern ACPI_CONVERSION_TABLE       CleanupConversionTable;
278
extern ACPI_CONVERSION_TABLE       CleanupConversionTable;
278
extern ACPI_CONVERSION_TABLE       StatsConversionTable;
279
extern ACPI_CONVERSION_TABLE       StatsConversionTable;
279
extern ACPI_CONVERSION_TABLE       CustomConversionTable;
280
extern ACPI_CONVERSION_TABLE       CustomConversionTable;
-
 
281
extern ACPI_CONVERSION_TABLE       LicenseConversionTable;
Line 280... Line 282...
280
 
282
 
Line 281... Line 283...
281
 
283