| OLD | NEW |
| 1 /** | 1 /** |
| 2 * \file libyasm/listfmt.h | 2 * \file libyasm/listfmt.h |
| 3 * \brief YASM list format interface. | 3 * \brief YASM list format interface. |
| 4 * | 4 * |
| 5 * \rcs | |
| 6 * $Id: listfmt.h 1827 2007-04-22 05:09:49Z peter $ | |
| 7 * \endrcs | |
| 8 * | |
| 9 * \license | 5 * \license |
| 10 * Copyright (C) 2004-2007 Peter Johnson | 6 * Copyright (C) 2004-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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 | 115 |
| 120 #define yasm_listfmt_destroy(listfmt) \ | 116 #define yasm_listfmt_destroy(listfmt) \ |
| 121 ((yasm_listfmt_base *)listfmt)->module->destroy(listfmt) | 117 ((yasm_listfmt_base *)listfmt)->module->destroy(listfmt) |
| 122 | 118 |
| 123 #define yasm_listfmt_output(listfmt, f, linemap, a) \ | 119 #define yasm_listfmt_output(listfmt, f, linemap, a) \ |
| 124 ((yasm_listfmt_base *)listfmt)->module->output(listfmt, f, linemap, a) | 120 ((yasm_listfmt_base *)listfmt)->module->output(listfmt, f, linemap, a) |
| 125 | 121 |
| 126 #endif | 122 #endif |
| 127 | 123 |
| 128 #endif | 124 #endif |
| OLD | NEW |