mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
(BinaryCStream): Declare new ivars for holding sizeof C types.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2045 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4cac0bc1f1
commit
e482db36f0
1 changed files with 7 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
/* Interface for GNU Objective-C binary stream object for use serializing
|
||||
Copyright (C) 1996 Free Software Foundation, Inc.
|
||||
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
||||
|
||||
Written by: Andrew Kachites McCallum <mccallum@gnu.ai.mit.edu>
|
||||
Written: Jan 1996
|
||||
|
@ -29,6 +29,12 @@
|
|||
#include <gnustep/base/CStream.h>
|
||||
|
||||
@interface BinaryCStream : CStream
|
||||
{
|
||||
unsigned char _sizeof_long;
|
||||
unsigned char _sizeof_int;
|
||||
unsigned char _sizeof_short;
|
||||
unsigned char _sizeof_char;
|
||||
}
|
||||
|
||||
+ setDebugging: (BOOL)f;
|
||||
|
||||
|
|
Loading…
Reference in a new issue