summaryrefslogtreecommitdiff
path: root/includes/plugin_internal.h
diff options
context:
space:
mode:
authorAsh Wolf <ninji@wuffs.org>2022-10-19 21:16:13 +0100
committerAsh Wolf <ninji@wuffs.org>2022-10-19 21:16:13 +0100
commitd1f153d34b023d81768f6087f67dbfff714bafc9 (patch)
treea694d470a60655d0cda15a70791fbdb90a2398cf /includes/plugin_internal.h
parent775b6861666af36d317fb577cf489e2c6377f878 (diff)
downloadMWCC-d1f153d34b023d81768f6087f67dbfff714bafc9.tar.gz
MWCC-d1f153d34b023d81768f6087f67dbfff714bafc9.zip
let's commit all this before my VM blows up and nukes my work
Diffstat (limited to '')
-rw-r--r--includes/plugin_internal.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/includes/plugin_internal.h b/includes/plugin_internal.h
index be84406..fdf2bd0 100644
--- a/includes/plugin_internal.h
+++ b/includes/plugin_internal.h
@@ -5,7 +5,7 @@
#pragma options align=mac68k
#endif
struct CWPluginPrivateContext {
- CWPluginPrivateContext();
+ CWPluginPrivateContext(SInt32 thePluginType, SInt32 totalSize = 0);
~CWPluginPrivateContext();
SInt32 request;
@@ -79,6 +79,13 @@ struct CWParserContext : CWPluginPrivateContext {
CWCommandLineArgs *panel_args;
CWParserCallbacks *callbacks;
};
+
+struct Plugin;
+typedef struct shellContextType {
+ Plugin *plugin;
+ Boolean userAccessPathsChanged;
+ Boolean systemAccessPathsChanged;
+} shellContextType;
#ifdef __MWERKS__
#pragma options align=reset
#endif