| OLD | NEW |
| 1 /* $Id: coff-objfmt.h 1825 2007-04-22 03:32:46Z peter $ | 1 /* |
| 2 * COFF (DJGPP) object format | 2 * COFF (DJGPP) object format |
| 3 * | 3 * |
| 4 * Copyright (C) 2007 Peter Johnson | 4 * Copyright (C) 2007 Peter Johnson |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| 11 * 2. Redistributions in binary form must reproduce the above copyright | 11 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 yasm_value codes_count; | 68 yasm_value codes_count; |
| 69 } coff_unwind_info; | 69 } coff_unwind_info; |
| 70 | 70 |
| 71 coff_unwind_info *yasm_win64__uwinfo_create(void); | 71 coff_unwind_info *yasm_win64__uwinfo_create(void); |
| 72 void yasm_win64__uwinfo_destroy(coff_unwind_info *info); | 72 void yasm_win64__uwinfo_destroy(coff_unwind_info *info); |
| 73 void yasm_win64__unwind_generate(yasm_section *xdata, | 73 void yasm_win64__unwind_generate(yasm_section *xdata, |
| 74 /*@only@*/ coff_unwind_info *info, | 74 /*@only@*/ coff_unwind_info *info, |
| 75 unsigned long line); | 75 unsigned long line); |
| 76 | 76 |
| 77 #endif | 77 #endif |
| OLD | NEW |