From c9cbeced5b3f2bdd7407e29c0811e65954132540 Mon Sep 17 00:00:00 2001 From: Root THC Date: Tue, 24 Feb 2026 12:42:47 +0000 Subject: initial --- .../doc/API_doc/html/SymbolFingp_8hpp-source.html | 75 ++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 other/Kermit/doc/API_doc/html/SymbolFingp_8hpp-source.html (limited to 'other/Kermit/doc/API_doc/html/SymbolFingp_8hpp-source.html') diff --git a/other/Kermit/doc/API_doc/html/SymbolFingp_8hpp-source.html b/other/Kermit/doc/API_doc/html/SymbolFingp_8hpp-source.html new file mode 100644 index 0000000..05b43a0 --- /dev/null +++ b/other/Kermit/doc/API_doc/html/SymbolFingp_8hpp-source.html @@ -0,0 +1,75 @@ + +
+00001 /*
+00002 * SymbolFingp.hpp:
+00003 * some fingerprint
+00004 * written by palmers / teso
+00005 */
+00006 #ifndef __SymbolFingp_H
+00007 #define __SymbolFingp_H
+00008 #include <map>
+00009 #include <fstream>
+00010 #include <string>
+00011 #include <iostream>
+00012
+00013 /* default file to open */
+00014 #define DEFAULT_FILE "SymbolFind.conf"
+00015
+00016 /* defines used for the type field in struct cell */
+00017 #define WWCARD 1
+00018 #define NOCARD 0
+00019
+00020
+00021 struct cell
+00022 {
+00023 unsigned char type;
+00024 unsigned char val;
+00025 };
+00026
+00027
+00028 struct sfp
+00029 {
+00030 char *name;
+00031 unsigned long start_addr;
+00032 unsigned long stop_addr;
+00033 long offset;
+00034 unsigned short length;
+00035 struct cell *fp;
+00036 };
+00037
+00038
+00042 class SymbolFingp
+00043 {
+00044 private:
+00045
+00046 typedef map<string, struct sfp> FingerThing;
+00047 FingerThing Fingers;
+00048
+00049 void readFingers (ifstream);
+00050 bool addFinger (struct sfp *);
+00051
+00052 public:
+00053
+00057 SymbolFingp ();
+00058
+00062 SymbolFingp (string);
+00063
+00067 ~SymbolFingp ();
+00068
+00072 struct sfp *getFinger (string);
+00073 };
+00074
+00075 #endif /* __SymbolFingp_H */
+
1.2.9.1 written by Dimitri van Heesch,
+ © 1997-2001
+
+
--
cgit v1.3