summaryrefslogtreecommitdiffstats
path: root/unsupported/UnsupportedProcess.h
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2021-01-28 18:19:38 +0100
committercgzones <cgzones@googlemail.com>2021-01-29 14:12:44 +0100
commit3acf28c259f1a393badcc2e99c9646e19a911f98 (patch)
tree78ea9191604c1aca520d358af0927b2c007dbf78 /unsupported/UnsupportedProcess.h
parentbd694c0ce60a60e29dc4ae22923f251fbd196332 (diff)
Unsupported: pass compilation
Diffstat (limited to 'unsupported/UnsupportedProcess.h')
-rw-r--r--unsupported/UnsupportedProcess.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/unsupported/UnsupportedProcess.h b/unsupported/UnsupportedProcess.h
index e1812f16..2e104494 100644
--- a/unsupported/UnsupportedProcess.h
+++ b/unsupported/UnsupportedProcess.h
@@ -9,12 +9,19 @@ in the source distribution for its full text.
#include "Settings.h"
-#define Process_delete UnsupportedProcess_delete
+typedef struct UnsupportedProcess_ {
+ Process super;
+
+ /* Add platform specific fields */
+} UnsupportedProcess;
+
extern const ProcessFieldData Process_fields[LAST_PROCESSFIELD];
-Process* UnsupportedProcess_new(Settings* settings);
+Process* UnsupportedProcess_new(const Settings* settings);
+
+void Process_delete(Object* cast);
-void UnsupportedProcess_delete(Object* cast);
+extern const ProcessClass UnsupportedProcess_class;
#endif

© 2014-2024 Faster IT GmbH | imprint | privacy policy