mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-30 12:01:03 +00:00
Fix missing file
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/branches/stable@26735 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2a3c185ac8
commit
cb0b60725b
1 changed files with 14 additions and 0 deletions
|
@ -498,5 +498,19 @@ long
|
|||
GSPrivateUnloadModule(FILE *errorStream,
|
||||
void (*unloadCallback)(Class, struct objc_category *)) GS_ATTRIB_PRIVATE;
|
||||
|
||||
|
||||
/* Memory to use to put executabel code in.
|
||||
*/
|
||||
@interface GSCodeBuffer : NSObject
|
||||
{
|
||||
unsigned size;
|
||||
void *buffer;
|
||||
}
|
||||
+ (GSCodeBuffer*) memoryWithSize: (unsigned)_size;
|
||||
- (void*) buffer;
|
||||
- (id) initWithSize: (unsigned)_size;
|
||||
- (void) protect;
|
||||
@end
|
||||
|
||||
#endif /* _GSPrivate_h_ */
|
||||
|
||||
|
|
Loading…
Reference in a new issue