diff options
Diffstat (limited to 'other/Kermit/doc/API_doc/html/pseudo__link_8h-source.html')
| -rw-r--r-- | other/Kermit/doc/API_doc/html/pseudo__link_8h-source.html | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/other/Kermit/doc/API_doc/html/pseudo__link_8h-source.html b/other/Kermit/doc/API_doc/html/pseudo__link_8h-source.html new file mode 100644 index 0000000..97cab4d --- /dev/null +++ b/other/Kermit/doc/API_doc/html/pseudo__link_8h-source.html | |||
| @@ -0,0 +1,73 @@ | |||
| 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> | ||
| 2 | <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> | ||
| 3 | <title>pseudo_link.h Source File</title> | ||
| 4 | <link href="doxygen.css" rel="stylesheet" type="text/css"> | ||
| 5 | </head><body bgcolor="#ffffff"> | ||
| 6 | <!-- Generated by Doxygen 1.2.9.1 --> | ||
| 7 | <center> | ||
| 8 | <a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="functions.html">Compound Members</a> </center> | ||
| 9 | <hr><h1>pseudo_link.h</h1><div class="fragment"><pre>00001 <font class="comment">/*</font> | ||
| 10 | 00002 <font class="comment"> * pseudo_link.h:</font> | ||
| 11 | 00003 <font class="comment"> * file for pseudolinking.</font> | ||
| 12 | 00004 <font class="comment"> * put all your pointer to function prototypes here.</font> | ||
| 13 | 00005 <font class="comment"> * written by palmers / teso</font> | ||
| 14 | 00006 <font class="comment"> */</font> | ||
| 15 | 00007 <font class="preprocessor">#include <glob.h></font> | ||
| 16 | 00008 <font class="preprocessor">#include <linux/types.h></font> | ||
| 17 | 00009 <font class="preprocessor">#include <sys/stat.h></font> | ||
| 18 | 00010 <font class="preprocessor">#include <sys/types.h></font> | ||
| 19 | 00011 <font class="preprocessor">#include <asm/ptrace.h></font> | ||
| 20 | 00012 <font class="preprocessor">#include <addresses.h></font> | ||
| 21 | 00013 | ||
| 22 | 00014 <font class="preprocessor">#define USE_SYS_FORK \</font> | ||
| 23 | 00015 <font class="preprocessor">int (*sys_fork)(struct pt_regs) = \</font> | ||
| 24 | 00016 <font class="preprocessor"> (int (*)(struct pt_regs))SYS_FORK_ADD; </font><font class="comment">/* arch dependant! */</font> | ||
| 25 | 00017 | ||
| 26 | 00018 <font class="preprocessor">#define USE_SYS_READ \</font> | ||
| 27 | 00019 <font class="preprocessor">size_t (*sys_read)(unsigned int, char *, size_t) = \</font> | ||
| 28 | 00020 <font class="preprocessor"> (size_t (*)(unsigned int, char *, size_t))SYS_READ_ADD;</font> | ||
| 29 | 00021 <font class="preprocessor"></font> | ||
| 30 | 00022 <font class="preprocessor">#define USE_SYS_WRITE \</font> | ||
| 31 | 00023 <font class="preprocessor">size_t (*sys_write)(unsigned int, char *, size_t) = \</font> | ||
| 32 | 00024 <font class="preprocessor"> (size_t (*)(unsigned int, char *, size_t))SYS_WRITE_ADD;</font> | ||
| 33 | 00025 <font class="preprocessor"></font> | ||
| 34 | 00026 <font class="preprocessor">#define USE_SYS_EXIT \</font> | ||
| 35 | 00027 <font class="preprocessor">int (*sys_exit)(int) = \</font> | ||
| 36 | 00028 <font class="preprocessor"> (int (*)(int))SYS_EXIT_ADD;</font> | ||
| 37 | 00029 <font class="preprocessor"></font> | ||
| 38 | 00030 <font class="preprocessor">#define USE_SYS_SETUID \</font> | ||
| 39 | 00031 <font class="preprocessor">int (*sys_setuid)(uid_t) = \</font> | ||
| 40 | 00032 <font class="preprocessor"> (int (*)(uid_t))SYS_SETUID_ADD;</font> | ||
| 41 | 00033 <font class="preprocessor"></font> | ||
| 42 | 00034 <font class="preprocessor">#define USE_SYS_SETGID \</font> | ||
| 43 | 00035 <font class="preprocessor">int (*sys_setgid)(gid_t) = \</font> | ||
| 44 | 00036 <font class="preprocessor"> (int (*)(gid_t))SYS_SETGID_ADD;</font> | ||
| 45 | 00037 <font class="preprocessor"></font> | ||
| 46 | 00038 <font class="preprocessor">#define USE_SYS_GETUID \</font> | ||
| 47 | 00039 <font class="preprocessor">int (*sys_getuid)(void) = \</font> | ||
| 48 | 00040 <font class="preprocessor"> (int (*)(void))SYS_GETUID_ADD;</font> | ||
| 49 | 00041 <font class="preprocessor"></font> | ||
| 50 | 00042 <font class="preprocessor">#define USE_SYS_GETGID \</font> | ||
| 51 | 00043 <font class="preprocessor">int (*sys_getgid)(void) = \</font> | ||
| 52 | 00044 <font class="preprocessor"> (int (*)(void))SYS_GETGID_ADD;</font> | ||
| 53 | 00045 <font class="preprocessor"></font> | ||
| 54 | 00046 <font class="preprocessor">#define USE_SYS_OPEN \</font> | ||
| 55 | 00047 <font class="preprocessor">int (*sys_open)(const char *, int, int) = \</font> | ||
| 56 | 00048 <font class="preprocessor"> (int (*)(const char *, int, int))SYS_OPEN_ADD;</font> | ||
| 57 | 00049 <font class="preprocessor"></font> | ||
| 58 | 00050 <font class="preprocessor">#define USE_SYS_CLOSE \</font> | ||
| 59 | 00051 <font class="preprocessor">int (*sys_close)(int) = \</font> | ||
| 60 | 00052 <font class="preprocessor"> (int (*)(int))SYS_CLOSE_ADD;</font> | ||
| 61 | 00053 <font class="preprocessor"></font> | ||
| 62 | 00054 <font class="preprocessor">#define USE_KMALLOC \</font> | ||
| 63 | 00055 <font class="preprocessor">void *(*kmalloc)(size_t, int) = \</font> | ||
| 64 | 00056 <font class="preprocessor"> (void *(*)(size_t, int)) KMALLOC_ADD;</font> | ||
| 65 | 00057 <font class="preprocessor"></font> | ||
| 66 | 00058 | ||
| 67 | </pre></div><hr><address><small>Generated at Tue Aug 14 18:04:51 2001 for Kermit by | ||
| 68 | <a href="http://www.doxygen.org/index.html"> | ||
| 69 | <img src="doxygen.gif" alt="doxygen" align="middle" border=0 | ||
| 70 | width=110 height=53></a>1.2.9.1 written by <a href="mailto:dimitri@stack.nl">Dimitri van Heesch</a>, | ||
| 71 | © 1997-2001</small></address> | ||
| 72 | </body> | ||
| 73 | </html> | ||
