📄 objc.h
字号:
/* Basic data types for Objective C. Copyright (C) 1992 Free Software Foundation, Inc.This file is part of GNU CC.GNU CC is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU CC is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU CC; see the file COPYING. If not, write tothe Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. *//* As a special exception, if you link this library with files compiled with GCC to produce an executable, this does not cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License. */ #ifndef __objc_INCLUDE_GNU#define __objc_INCLUDE_GNU/* If someone is using a c++ compiler then adjust the types in the file back to C. */#ifdef __cplusplusextern "C" {#endif#include "record.h"#define nil (id)0 /* id of Nil instance */#define Nil (Class_t)0 /* id of Nil class */typedef char* STR; /* String alias */ /* Boolean typedefs */typedef char BOOL;#define YES (BOOL)1#define NO (BOOL)0/* Definition of a selector. Selectors are really of type char*. The run-time hashes the string's address to locate the method. If the method isn't in the hash table then a search is made through the class hierarchy using strcmp to locate the method. */#if 0typedef struct objc_selector* SEL;#elsetypedef void* SEL;#endif/* ObjC uses this typedef for untyped instances. */typedef struct objc_object { struct objc_class* class_pointer;} *id;/* Prototype for method functions. */typedef id (*IMP)(id, SEL, ...); /* Filer types used to describe Ivars and Methods. */#define _C_ID '@'#define _C_CLASS '#'#define _C_SEL ':'#define _C_CHR 'c'#define _C_UCHR 'C'#define _C_SHT 's'#define _C_USHT 'S'#define _C_INT 'i'#define _C_UINT 'I'#define _C_LNG 'l'#define _C_ULNG 'L'#define _C_FLT 'f'#define _C_DBL 'd'#define _C_BFLD 'b'#define _C_VOID 'v'#define _C_UNDEF '?'#define _C_PTR '^'#define _C_CHARPTR '*'#define _C_ARY_B '['#define _C_ARY_E ']'#define _C_UNION_B '('#define _C_UNION_E ')'#define _C_STRUCT_B '{'#define _C_STRUCT_E '}'/* These definitions are masks used with the "info" member variable in the lass and meta class structures. */#define CLS_CLASS 0x1L /* The structure is of type class (Class_t). */#define CLS_META 0x2L /* The structure is of type meta class (MetaClass_t). */#define CLS_INITIALIZED 0x4L /* Class is initialized. A +initialize method is the first message sent to a class. It isn't guaranteed to be sent only once. */#define CLS_RTI 0x8L /* The class has been initialized within the run time library. *//* Set this variable nonzero to print a line describing each message that is sent. */extern BOOL objc_trace;/* * Whereas a Module (defined further down) is the root (typically) of a file, * a Symtab is the root of the class and category definitions within the * module. * * A Symtab contains a variable length array of pointers to classes and * categories defined in the module. */typedef struct objc_symtab { unsigned long sel_ref_cnt; /* Unknown. */ SEL *refs; /* Unknown. */ unsigned short cls_def_cnt; /* Number of classes compiled (defined) in the module. */ unsigned short cat_def_cnt; /* Number of categories compiled (defined) in the module. */ void *defs[1]; /* Variable array of pointers. cls_def_cnt of type Class_t followed by cat_def_cnt of type Category_t. */} Symtab, *Symtab_t;/* * The compiler generates one of these structures for each module that * composes the executable (eg main.m). * * This data structure is the root of the definition tree for the module. * * A collect program runs between ld stages and creates a ObjC ctor array. * That array holds a pointer to each module structure of the executable. */typedef struct objc_module { unsigned long version; /* Compiler revision. */ unsigned long size; /* sizeof(Module). */ const char* name; /* Name of the file where the module was generated. The name includes the path. */ Symtab_t symtab; /* Pointer to the Symtab of the module. The Symtab holds an array of pointers to the classes and categories defined in the module. */} Module, *Module_t;/* * The compiler generates one of these structures for a class that has * instance variables defined in its specification. */typedef struct objc_ivar* Ivar_t;typedef struct objc_ivar_list { int ivar_count; /* Number of structures (Ivar) contained in the list. One structure per instance variable defined in the class. */ struct objc_ivar { const char* ivar_name; /* Name of the instance variable as entered in the class definition. */ const char* ivar_type; /* Description of the Ivar's type. Useful for debuggers. */ int ivar_offset; /* Byte offset from the base address of the instance structure to the variable. */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -