blob: eddc3eb9ea447ad000705f435d1ea4c49bb1f724 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
//
// pcsxr.pch
// Pcsxr
//
// Created by C.W. Betts on 1/25/14.
//
//
#ifndef Pcsxr_pcsxr_pch
#define Pcsxr_pcsxr_pch
// Apple deprecated __private_extern__ in Xcode 4.6.
// This is a convenience declaration to retain the old behavior.
#ifndef __private_extern
#define __private_extern __attribute__((visibility("hidden")))
#endif
#include <sys/time.h>
#include <unistd.h>
#include <limits.h>
#include <zlib.h>
#include <string.h>
#include <errno.h>
#include <signal.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <netdb.h>
#include <unistd.h>
#include <stdlib.h>
#include <CoreFoundation/CoreFoundation.h>
#include <OpenGL/gltypes.h>
#ifdef __OBJC__
#import <Cocoa/Cocoa.h>
#endif
#ifndef NS_DESIGNATED_INITIALIZER
#define NS_DESIGNATED_INITIALIZER
#endif
#endif
|