acpica/generate/msvc9
Robert Moore a831d91d07 Split all internal Global Lock functions to new file - evglock.c
These functions were moved from evmisc.c
2011-03-17 14:41:54 -07:00
..
AcpiBin.vcproj Update windows project files (new file added.) 2011-01-24 15:01:04 -08:00
AcpiComponents.sln New: Project files for VC++ 9 (Visual Studio 2008) 2010-12-17 17:11:48 -08:00
AcpiExec.vcproj Split all internal Global Lock functions to new file - evglock.c 2011-03-17 14:41:54 -07:00
AcpiNames.vcproj Split large dsopcode.c and dsload.c files. 2011-01-27 10:28:18 -08:00
AcpiSrc.vcproj New: Project files for VC++ 9 (Visual Studio 2008) 2010-12-17 17:11:48 -08:00
AcpiSubsystem.vcproj Split all internal Global Lock functions to new file - evglock.c 2011-03-17 14:41:54 -07:00
AcpiXtract.vcproj New: Project files for VC++ 9 (Visual Studio 2008) 2010-12-17 17:11:48 -08:00
ApiTest.vcproj Split all internal Global Lock functions to new file - evglock.c 2011-03-17 14:41:54 -07:00
AslCompiler.vcproj iASL: Split large file aslanalyze.c into three files. 2011-02-01 13:10:47 -08:00
Examples.vcproj New: Project files for VC++ 9 (Visual Studio 2008) 2010-12-17 17:11:48 -08:00
readme.txt New: readme file with notes on generating ACPICA under VC 9. 2010-12-20 13:15:14 -08:00

/*
 * Generation of ACPICA with MS Visual Studio 2008
 */

ACPICA generates with all language extensions disabled, since the code
is meant to be highly portable.

There are a couple of include files in MS Visual Studio 2008 that
contain // comments. These will be flagged as warnings. To eliminate
these warnings, modify these include files:


1) \Program Files\Microsoft Visual Studio 9.0\VC\include\sal.h

Add this to the start of the file:

#pragma warning( disable : 4001 ) /* no warning about "//" comments */

Add this to the end of the file:

#pragma warning( default : 4001 )


2) \Program Files\Microsoft Visual Studio 9.0\VC\include\stdlib.h

Line 773: Change // comment to a /* */ comment