mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
18 lines
407 B
C
18 lines
407 B
C
/****************************************************************************
|
|
*
|
|
* Description: header for BIN output format
|
|
*
|
|
****************************************************************************/
|
|
|
|
|
|
#ifndef _BIN_H_INCLUDED_
|
|
#define _BIN_H_INCLUDED_
|
|
|
|
void bin_init( struct module_info * );
|
|
|
|
#if PE_SUPPORT
|
|
void pe_create_PE_header( void );
|
|
#endif
|
|
|
|
#endif // _BIN_H_INCLUDED_
|