| OLD | NEW |
| 1 /** | 1 /** |
| 2 * \file libyasm/parser.h | 2 * \file libyasm/parser.h |
| 3 * \brief YASM parser module interface. | 3 * \brief YASM parser module interface. |
| 4 * | 4 * |
| 5 * \rcs | |
| 6 * $Id: parser.h 2082 2008-05-09 06:46:02Z 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 * 1. Redistributions of source code must retain the above copyright | 11 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 13 * 2. 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 * yasm_linemap_add_data()). | 58 * yasm_linemap_add_data()). |
| 63 * \param errwarns error/warning set | 59 * \param errwarns error/warning set |
| 64 * \note Parse errors and warnings are stored into errwarns. | 60 * \note Parse errors and warnings are stored into errwarns. |
| 65 */ | 61 */ |
| 66 void (*do_parse) | 62 void (*do_parse) |
| 67 (yasm_object *object, yasm_preproc *pp, int save_input, | 63 (yasm_object *object, yasm_preproc *pp, int save_input, |
| 68 yasm_linemap *linemap, yasm_errwarns *errwarns); | 64 yasm_linemap *linemap, yasm_errwarns *errwarns); |
| 69 } yasm_parser_module; | 65 } yasm_parser_module; |
| 70 | 66 |
| 71 #endif | 67 #endif |
| OLD | NEW |