summaryrefslogtreecommitdiff
path: root/comms/estic/patches
diff options
context:
space:
mode:
Diffstat (limited to 'comms/estic/patches')
-rw-r--r--comms/estic/patches/patch-az15
-rw-r--r--comms/estic/patches/patch-ba29
2 files changed, 44 insertions, 0 deletions
diff --git a/comms/estic/patches/patch-az b/comms/estic/patches/patch-az
new file mode 100644
index 00000000000..cbebfe5d1ed
--- /dev/null
+++ b/comms/estic/patches/patch-az
@@ -0,0 +1,15 @@
+$NetBSD: patch-az,v 1.1 2008/01/06 18:39:38 rillig Exp $
+
+See mk/help/c++.help.
+
+--- ../spunk/itemwin.h.orig 1996-11-07 18:06:48.000000000 +0000
++++ ../spunk/itemwin.h 2008-01-06 18:52:26.000000000 +0000
+@@ -55,6 +55,8 @@ const u16 ifNoSub = 0x0010
+ /*****************************************************************************/
+
+
++class ResEditApp;
++class ItemWindow;
+
+ class WindowItem : public Streamable {
+
diff --git a/comms/estic/patches/patch-ba b/comms/estic/patches/patch-ba
new file mode 100644
index 00000000000..5535fcc5e04
--- /dev/null
+++ b/comms/estic/patches/patch-ba
@@ -0,0 +1,29 @@
+$NetBSD: patch-ba,v 1.1 2008/01/06 18:39:39 rillig Exp $
+
+See mk/help/c++.help.
+
+--- ../spunk/str.h.orig 1996-12-18 13:18:50.000000000 +0000
++++ ../spunk/str.h 2008-01-06 19:26:53.000000000 +0000
+@@ -91,6 +91,13 @@ extern const class String EmptyString;
+ // Note: This string class may not work with strings greater than INT_MAX or
+ // 0xFFFF, whichever is less
+
++String ShowControls (const String& S, unsigned Style = ccDefault);
++String HideControls (const String& S);
++int Match (const char* Source, const char* Pattern);
++int Match (const String& Source, const String& Pattern);
++int Match (const String& Source, const char* Pattern);
++int Match (const char* Source, const String& Pattern);
++String FormatStr (const char* S, ...);
+
+ class String : public Streamable {
+
+@@ -303,7 +310,7 @@ public:
+ // representation by the character itself, e.g. replace "\n" by the
+ // character with code 13.
+
+- friend String ShowControls (const String& S, unsigned Style = ccDefault);
++ friend String ShowControls (const String& S, unsigned Style);
+ // Recode the given string and replace every control character by it's
+ // visible representation, e.g. "\n" instead of the character with code
+ // code 13.