| OLD | NEW |
| 1 /** | 1 /** |
| 2 * \file libyasm/objfmt.h | 2 * \file libyasm/objfmt.h |
| 3 * \brief YASM object format module interface. | 3 * \brief YASM object format module interface. |
| 4 * | 4 * |
| 5 * \rcs | |
| 6 * $Id: objfmt.h 2310 2010-03-28 19:28:54Z peter $ | |
| 7 * \endrcs | |
| 8 * | |
| 9 * \license | 5 * \license |
| 10 * Copyright (C) 2001-2007 Peter Johnson | 6 * Copyright (C) 2001-2007 Peter Johnson |
| 11 * | 7 * |
| 12 * Redistribution and use in source and binary forms, with or without | 8 * Redistribution and use in source and binary forms, with or without |
| 13 * modification, are permitted provided that the following conditions | 9 * modification, are permitted provided that the following conditions |
| 14 * are met: | 10 * are met: |
| 15 * - Redistributions of source code must retain the above copyright | 11 * - Redistributions of source code must retain the above copyright |
| 16 * notice, this list of conditions and the following disclaimer. | 12 * notice, this list of conditions and the following disclaimer. |
| 17 * - Redistributions in binary form must reproduce the above copyright | 13 * - Redistributions in binary form must reproduce the above copyright |
| 18 * notice, this list of conditions and the following disclaimer in the | 14 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 #define yasm_objfmt_init_new_section(section, line) \ | 207 #define yasm_objfmt_init_new_section(section, line) \ |
| 212 ((yasm_objfmt_base *)((object)->objfmt))->module->init_new_section \ | 208 ((yasm_objfmt_base *)((object)->objfmt))->module->init_new_section \ |
| 213 (section, line) | 209 (section, line) |
| 214 #define yasm_objfmt_get_special_sym(object, name, parser) \ | 210 #define yasm_objfmt_get_special_sym(object, name, parser) \ |
| 215 ((yasm_objfmt_base *)((object)->objfmt))->module->get_special_sym \ | 211 ((yasm_objfmt_base *)((object)->objfmt))->module->get_special_sym \ |
| 216 (object, name, parser) | 212 (object, name, parser) |
| 217 | 213 |
| 218 #endif | 214 #endif |
| 219 | 215 |
| 220 #endif | 216 #endif |
| OLD | NEW |