-
Notifications
You must be signed in to change notification settings - Fork 4
/
codeguid.h
43 lines (36 loc) · 1.34 KB
/
codeguid.h
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
/**
* @namespace biew
* @file codeguid.h
* @brief This file contains prototypes code navigator.
* @version -
* @remark this source file is part of Binary vIEW project (BIEW).
* The Binary vIEW (BIEW) is copyright (C) 1995 Nickols_K.
* 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 Nickols_K
* @since 1995
* @note Development, fixes and improvements
**/
#ifndef __CODEGUID__H
#define __CODEGUID__H
#ifndef __SYS_DEP_H
#include "_sys_dep.h"
#endif
#ifdef __cplusplus
extern "C" {
#endif
extern char codeguid_image[];
extern void __FASTCALL__ GidResetGoAddress( int keycode );
extern void __FASTCALL__ GidAddGoAddress(char *str,__filesize_t addr);
extern void __FASTCALL__ GidAddBackAddress( void );
extern __filesize_t __FASTCALL__ GidGetGoAddress(unsigned keycode);
extern char * __FASTCALL__ GidEncodeAddress(__filesize_t cfpos,tBool aresolv);
extern tBool __FASTCALL__ initCodeGuider( void );
extern void __FASTCALL__ termCodeGuider( void );
#ifdef __cplusplus
}
#endif
#endif