File: jconfig.h

package info (click to toggle)
openni-sensor-pointclouds 5.1.0.41.7-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,644 kB
  • ctags: 7,637
  • sloc: cpp: 34,881; ansic: 14,901; sh: 243; python: 155; makefile: 93; xml: 8
file content (12 lines) | stat: -rw-r--r-- 291 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
#ifdef _WIN32 // Microsoft Visual Studio
	#include "jconfig.vc"
	#include <stdio.h>
#elif SN_TARGET_PS3
	#include "jconfig.ps3"
	#include <stdio.h>
#elif ((linux) || (__APPLE__))
	#include "jconfig.lnx86"
	#include <stdio.h>
#else
	#error "LibJPEG: Unsupported Platform!"
#endif