* Headers/Additions/GNUstepBase/GSObjCRuntime.h: Define

encoding macros for the NeXT runtime.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@20070 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Ayers 2004-09-16 08:08:08 +00:00
parent bec71bd8e2
commit 3bb04e95cd
2 changed files with 16 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2004-09-16 David Ayers <d.ayers@inode.at>
* Headers/Additions/GNUstepBase/GSObjCRuntime.h: Define encoding
macros for the NeXT runtime.
2004-09-14 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSDateFormatter.m:

View file

@ -77,6 +77,17 @@ extern "C" {
#define nil 0
#endif
#ifdef NeXT_RUNTIME
#define _C_CONST 'r'
#define _C_IN 'n'
#define _C_INOUT 'N'
#define _C_OUT 'o'
#define _C_BYCOPY 'O'
#define _C_BYREF 'R'
#define _C_ONEWAY 'V'
#define _C_GCINVISIBLE '!'
#endif
#ifndef NO_GNUSTEP
/*
* Functions for accessing instance variables directly -