From c9cbeced5b3f2bdd7407e29c0811e65954132540 Mon Sep 17 00:00:00 2001 From: Root THC Date: Tue, 24 Feb 2026 12:42:47 +0000 Subject: initial --- .../Kermit/doc/API_doc/html/Patch_8hpp-source.html | 119 +++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 other/Kermit/doc/API_doc/html/Patch_8hpp-source.html (limited to 'other/Kermit/doc/API_doc/html/Patch_8hpp-source.html') diff --git a/other/Kermit/doc/API_doc/html/Patch_8hpp-source.html b/other/Kermit/doc/API_doc/html/Patch_8hpp-source.html new file mode 100644 index 0000000..66340bd --- /dev/null +++ b/other/Kermit/doc/API_doc/html/Patch_8hpp-source.html @@ -0,0 +1,119 @@ + + +Patch.hpp Source File + + + +
+Main Page   Compound List   File List   Compound Members  
+

Patch.hpp

00001 /*
+00002  * Patch.hpp:
+00003  * representation of a kernel patch.
+00004  * written by palmers / teso
+00005  */
+00006 #ifndef __PATCH_C
+00007 #define __PATCH_C
+00008 
+00009 #include <rwKernel.hpp>
+00010 #include <SymbolTable.hpp>
+00011 #include <SystemMap.hpp>
+00012 #include <stoi16.hpp>
+00013 #include <itos16.hpp>
+00014 #include <utility>
+00015 #include <functional>
+00016 #include <algorithm>
+00017 #include <list>
+00018 #include <fstream>
+00019 #include <string>
+00020 #include <name2add.h>
+00021 
+00022 
+00023 typedef pair<unsigned int, unsigned int>        Addr2Addr;
+00024 typedef list<Addr2Addr *>                       Addr2AddrList;
+00025 
+00026 Addr2AddrList *genReplaceValMap (SymbolTable *st);
+00027 void genDummyValMap ();
+00028 extern SystemMap DummyValMap;
+00029 
+00030 
+00031 #define CLEAN   1
+00032 #define LINKED  2
+00033 #define APPLIED 4
+00034 #define LFAILED 8
+00035 #define AFAILED 16
+00036 
+00037 
+00050 class Patch
+00051 {
+00052 private:
+00053   int state;
+00054   unsigned short len;
+00055   unsigned char *back_data, *data, *overwr;
+00056   unsigned int address;
+00057   rwKernel *local_rw;
+00058 
+00059   bool initObjects (unsigned char *, unsigned short, unsigned int, rwKernel *);
+00060   string state2string ();
+00061   void string2state (string);
+00062   string data2string (unsigned char *);
+00063   void string2data (string, unsigned char *);
+00064   void parse (string);
+00065 
+00066 public:
+00070   Patch ();
+00071 
+00078   Patch (unsigned char *data, unsigned short len, unsigned int addr);
+00079 
+00085   Patch (unsigned char *data, unsigned short len, unsigned int addr, rwKernel *x);
+00086 
+00091   Patch (string);
+00092 
+00097   Patch (string, rwKernel *);
+00098 
+00102   ~Patch ();
+00103 
+00104 
+00108   void initFromString (string);
+00109 
+00113   string getPatchAsString ();
+00114 
+00119   bool wasChanged ();
+00120 
+00124   bool isLinked ();
+00125 
+00129   bool isApplied ();
+00130 
+00134   bool isFailed ();
+00135 
+00139   bool isClean ();
+00140 
+00144   int getState ();
+00145 
+00149   void restore ();
+00150 
+00154   bool remove ();
+00155 
+00159   bool remove (rwKernel *);
+00160 
+00164   unsigned char *getData ();
+00165 
+00171   void apply (rwKernel *);
+00172 
+00177   void apply ();
+00178 
+00182   void link (Addr2AddrList *);
+00183 
+00192   void dump (string file);
+00193 
+00197   friend istream& operator>> (istream&, Patch&);
+00198 
+00202   friend ostream& operator<< (ostream&, Patch&);
+00203 };
+00204 #endif /* __PATCH_C */
+

Generated at Tue Aug 14 18:04:51 2001 for Kermit by + +doxygen1.2.9.1 written by Dimitri van Heesch, + © 1997-2001
+ + -- cgit v1.3