git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@15183 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2002-11-29 14:31:23 +00:00
parent 3f2346e70d
commit f34d7a922a
2 changed files with 4 additions and 4 deletions

View file

@ -104,9 +104,9 @@ GS_EXPORT void GSObjCSetValue(NSObject *self, NSString *key, id val, SEL sel,
*/
GS_EXPORT BOOL GSFindInstanceVariable(id obj, const char *name,
const char **type, unsigned int *size, int *offset);
GS_EXPORT void GSGetInstanceVariable(id obj, int offset, unsigned int size,
GS_EXPORT void GSGetVariable(id obj, int offset, unsigned int size,
void *data);
GS_EXPORT void GSSetInstanceVariable(id obj, int offset, unsigned int size,
GS_EXPORT void GSSetVariable(id obj, int offset, unsigned int size,
const void *data);
GS_EXPORT id GSGetValue(NSObject *self, NSString *key, SEL sel,
const char *type, unsigned size, int offset);

View file

@ -96,7 +96,7 @@ GSObjCFindVariable(id obj, const char *name,
/** Deprecated ... use GSObjCGetVariable() */
void
GSGetInstanceVariable(id obj, int offset, unsigned int size, void *data)
GSGetVariable(id obj, int offset, unsigned int size, void *data)
{
GSObjCGetVariable(obj, offset, size, data);
}
@ -114,7 +114,7 @@ GSObjCGetVariable(id obj, int offset, unsigned int size, void *data)
/** Deprecated ... use GSObjCSetVariable() */
void
GSSetInstanceVariable(id obj, int offset, unsigned int size, const void *data)
GSSetVariable(id obj, int offset, unsigned int size, const void *data)
{
GSObjCSetVariable(obj, offset, size, data);
}