1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
/**
* @namespace biew_plugins_auto
* @file plugins/bin/bin.c
* @brief This file contains implementation of decoder for any not handled
* binary file format.
* @version -
* @remark this source file is part of Binary vIEW project (BIEW).
* The Binary vIEW (BIEW) is copyright (C) 1995 Nick Kurshev.
* All rights reserved. This software is redistributable under the
* licence given in the file "Licence.en" ("Licence.ru" in russian
* translation) distributed in the BIEW archive.
* @note Requires POSIX compatible development system
*
* @author Nick Kurshev
* @since 1995
* @note Development, fixes and improvements
**/
#include <stddef.h>
#include "reg_form.h"
#include "plugins/disasm.h"
static tBool __FASTCALL__ bin_check_fmt( void ) { return True; }
static void __FASTCALL__ bin_init_fmt( void ) {}
static void __FASTCALL__ bin_destroy_fmt(void) {}
static int __FASTCALL__ bin_platform( void) { return DISASM_DEFAULT; }
REGISTRY_BIN binTable =
{
"Binary file",
{ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL },
{ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL },
bin_check_fmt,
bin_init_fmt,
bin_destroy_fmt,
NULL,
NULL,
NULL,
bin_platform,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL
};
|