ca5bb76d2b
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18012 a1c6a512-1295-4272-9138-f99709370657
32 lines
662 B
C++
32 lines
662 B
C++
/*
|
|
* PeLibInc.h - Part of the PeLib library.
|
|
*
|
|
* Copyright (c) 2004 - 2005 Sebastian Porst (webmaster@the-interweb.com)
|
|
* All rights reserved.
|
|
*
|
|
* This software is licensed under the zlib/libpng License.
|
|
* For more details see http://www.opensource.org/licenses/zlib-license.php
|
|
* or the license information file (license.htm) in the root directory
|
|
* of PeLib.
|
|
*/
|
|
|
|
#ifndef STD_H
|
|
#define STD_H
|
|
|
|
#ifdef _MSC_VER
|
|
#ifndef for
|
|
#define for if (0) {} else for
|
|
#endif
|
|
#endif
|
|
|
|
#include <algorithm>
|
|
#include <climits>
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <functional>
|
|
// #include "PeLib.h"
|
|
#include "PeLibAux.h"
|
|
|
|
#endif
|