summaryrefslogtreecommitdiff
path: root/Objective-C/pyobjc.h
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2008-01-28 19:17:00 +0100
committerMatthias Benkard <code@mail.matthias.benkard.de>2008-01-28 19:17:00 +0100
commit7cea2578637b823e93798e308ab0811c7fd7b7a4 (patch)
tree0db0eb3e9065528052ef618059ec7da91a44418a /Objective-C/pyobjc.h
parentb44ee368288b98ed5125ccb214e6d665c134be1f (diff)
Directory layout: Put code imported from PyObjC into its own directory.
darcs-hash:e3dd1138105e4eece0fbcbc13365eb3a25ffb808
Diffstat (limited to 'Objective-C/pyobjc.h')
-rw-r--r--Objective-C/pyobjc.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/Objective-C/pyobjc.h b/Objective-C/pyobjc.h
deleted file mode 100644
index 6a2d6b4..0000000
--- a/Objective-C/pyobjc.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/* Copyright 2007, Matthias Andreas Benkard. */
-
-#ifndef __pyobjc_H
-#define __pyobjc_H
-
-#include <stdlib.h>
-#include <stdio.h>
-#include "libobjcl.h"
-
-
-#ifdef __NEXT_RUNTIME__
-
-#ifndef APPLE_RUNTIME
-#define APPLE_RUNTIME
-#endif
-
-#import <objc/objc-class.h>
-
-#else /* !__NEXT_RUNTIME__ */
-
-#ifndef GNU_RUNTIME
-#define GNU_RUNTIME
-#endif
-
-#import <objc/objc-api.h>
-#ifndef __CXX__
-#define bool BOOL
-#endif
-
-#endif /* __NEXT_RUNTIME__ */
-
-
-#define PyMem_Free free
-#define PyMem_Malloc malloc
-#define Py_ssize_t ssize_t
-
-#ifdef OOM_KILL
-#define PyErr_NoMemory() [objcl_oom_exception raise]
-#else
-#define PyErr_NoMemory() NSLog (@"ERROR: Memory exhausted.");
-#endif
-
-#include "objc_support.h"
-#include "libffi_support.h"
-
-#endif /* __pyobjc_H */