File: init_plugin.c

package info (click to toggle)
yasm 1.3.0-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,880 kB
  • sloc: asm: 74,423; ansic: 53,055; python: 9,927; sh: 5,276; xml: 1,617; makefile: 214; pascal: 95; sed: 16
file content (13 lines) | stat: -rw-r--r-- 242 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <libyasm.h>
#include <libyasm/module.h>

extern yasm_arch_module yasm_x86_LTX_arch;

#ifdef _MSC_VER
__declspec(dllexport)
#endif
void
yasm_init_plugin(void)
{
    yasm_register_module(YASM_MODULE_ARCH, "x86", &yasm_x86_LTX_arch);
}