summaryrefslogtreecommitdiff
path: root/include/elfhandle.h
diff options
context:
space:
mode:
authornorly <ny-git@enpas.org>2013-06-28 02:35:44 +0100
committernorly <ny-git@enpas.org>2013-06-28 02:35:44 +0100
commit50b85e44529f195bf8156e9c0045d8b017ee26f5 (patch)
treef0ecaecdacafdb44206381d11c9d159d2e4e4d6b /include/elfhandle.h
parent28507233568a6deb80e243bd82df1e93f0b136a0 (diff)
Annotate doxygen-styledoxygen
Diffstat (limited to 'include/elfhandle.h')
-rw-r--r--include/elfhandle.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/elfhandle.h b/include/elfhandle.h
index b1a92ea..e948180 100644
--- a/include/elfhandle.h
+++ b/include/elfhandle.h
@@ -3,9 +3,13 @@
#include <libelf.h>
+/*!
+ * A simple pair of a file descriptor and a libelf handle,
+ * used to simplify elfucli.
+ */
typedef struct {
- int fd;
- Elf *e;
+ int fd; /*!< File handle */
+ Elf *e; /*!< libelf handle */
} ELFHandles;