1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #ifndef _OBJC_FILE_OLD_H
- #define _OBJC_FILE_OLD_H
- #if !__OBJC2__
- #include "objc-os.h"
- struct objc_module;
- struct old_protocol;
- struct old_class;
- __BEGIN_DECLS
- extern struct objc_module *_getObjcModules(const header_info *hi, size_t *nmodules);
- extern SEL *_getObjcSelectorRefs(const header_info *hi, size_t *nmess);
- extern struct old_protocol **_getObjcProtocols(const header_info *hi, size_t *nprotos);
- extern Class *_getObjcClassRefs(const header_info *hi, size_t *nclasses);
- extern const char *_getObjcClassNames(const header_info *hi, size_t *size);
- using UnsignedInitializer = void(*)(void);
- extern UnsignedInitializer* getLibobjcInitializers(const headerType *mhdr, size_t *count);
- __END_DECLS
- #endif
- #endif
|