diff options
author | George Hazan <ghazan@miranda.im> | 2018-01-26 17:38:31 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-01-26 17:38:31 +0300 |
commit | dea9c030340e50324eba97c72a27c151bed12e1c (patch) | |
tree | 6fc156f40f52a9fc6e6b29e60001959477ee1a5e /libs/freeimage/src/stdafx.h | |
parent | c6e8f8223cab9d799593b7b2cfa22134aa9745d6 (diff) |
AdvaImg:
- freeimage extracted to the separate library;
- FI_INTERFACE removed, all references to it are replaced with direct calls of FreeImage_* functions;
- unified project for AdvaImg
Diffstat (limited to 'libs/freeimage/src/stdafx.h')
-rw-r--r-- | libs/freeimage/src/stdafx.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/libs/freeimage/src/stdafx.h b/libs/freeimage/src/stdafx.h new file mode 100644 index 0000000000..7c3d01d4da --- /dev/null +++ b/libs/freeimage/src/stdafx.h @@ -0,0 +1,39 @@ +#include <float.h> +#include <io.h> +#include <malloc.h> +#include <stdlib.h> +#include <math.h> +#include <stdlib.h> +#include <memory.h> +#include <stdio.h> +#include <string.h> +#include <stdarg.h> +#include <ctype.h> +#include <assert.h> +#include <errno.h> +#include <float.h> +#include <limits.h> + +#include <string> +#include <list> +#include <map> +#include <set> +#include <vector> +#include <stack> +#include <sstream> +#include <algorithm> +#include <limits> +#include <memory> + +#define NOMINMAX +#include <windows.h> + +#include "CacheFile.h" +#include "FreeImageIO.h" +#include "Plugin.h" +#include "Utilities.h" +#include "FreeImage.h" +#include "Quantizers.h" +#include "ToneMapping.h" + + |