mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
Changes from Adam Fedor. See Oct 15 ChangeLog entry.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1886 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ed1a7d0ae2
commit
db69ec3c59
3 changed files with 11 additions and 4 deletions
|
@ -8,6 +8,13 @@ Thu Oct 31 11:54:42 1996 Andrew McCallum <mccallum@cs.cmu.edu>
|
|||
assignment of TIMEOUT.TV_USEC. (Reported by Richard
|
||||
Frith-Macdonald <richard@brainstorm.co.uk>.)
|
||||
|
||||
Tue Oct 15 15:29:07 1996 Adam Fedor <fedor@wave.Colorado.edu>
|
||||
|
||||
* src/objc-load.c: Use gnu names for objc_load_modules and
|
||||
objc_unload_modules functions as defined in header.
|
||||
* src/include/objc-load.h (objc_load_modules, objc_unload_modules):
|
||||
Use Class not Class*.
|
||||
|
||||
Wed Oct 16 10:01:23 1996 Scott Christley <scottc@net-community.com>
|
||||
|
||||
* checks/nsdate.m: New file.
|
||||
|
|
|
@ -25,12 +25,12 @@ extern long objc_unload_module(
|
|||
extern long objc_load_modules(
|
||||
char *files[],
|
||||
FILE *errorStream,
|
||||
void (*callback)(Class*,Category*),
|
||||
void (*callback)(Class,Category*),
|
||||
void **header,
|
||||
char *debugFilename);
|
||||
|
||||
extern long objc_unload_modules(
|
||||
FILE *errorStream,
|
||||
void (*unloadCallback)(Class*, Category*));
|
||||
void (*unloadCallback)(Class, Category*));
|
||||
|
||||
#endif /* __objc_load_h_INCLUDE */
|
||||
|
|
|
@ -210,7 +210,7 @@ objc_unload_module(
|
|||
return 0;
|
||||
}
|
||||
|
||||
long objc_loadModules(char *files[],FILE *errorStream,
|
||||
long objc_load_modules(char *files[],FILE *errorStream,
|
||||
void (*callback)(Class,Category*),
|
||||
void **header,
|
||||
char *debugFilename)
|
||||
|
@ -225,7 +225,7 @@ long objc_loadModules(char *files[],FILE *errorStream,
|
|||
}
|
||||
|
||||
long
|
||||
objc_unloadModules(
|
||||
objc_unload_modules(
|
||||
FILE *errorStream,
|
||||
void (*unloadCallback)(Class, Category*))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue