summaryrefslogtreecommitdiff
path: root/packages/palmunits/src/featuremgr.pp
diff options
context:
space:
mode:
Diffstat (limited to 'packages/palmunits/src/featuremgr.pp')
-rw-r--r--packages/palmunits/src/featuremgr.pp66
1 files changed, 66 insertions, 0 deletions
diff --git a/packages/palmunits/src/featuremgr.pp b/packages/palmunits/src/featuremgr.pp
new file mode 100644
index 0000000000..327f1e8cf8
--- /dev/null
+++ b/packages/palmunits/src/featuremgr.pp
@@ -0,0 +1,66 @@
+(******************************************************************************
+ *
+ * Copyright (c) 1994-2000 Palm, Inc. or its subsidiaries.
+ * All rights reserved.
+ *
+ * File: FeatureMgr.h
+ *
+ * Release: Palm OS SDK 4.0 (63220)
+ *
+ * Description:
+ * Header for the Feature Manager
+ *
+ * History:
+ * 11/14/94 RM - Created by Ron Marianetti
+ *
+ *****************************************************************************)
+
+unit featuremgr;
+
+interface
+
+uses palmos, coretraps, errorbase;
+
+(************************************************************
+ * Feature manager error codes
+ * the constant ftrErrorClass is defined in ErrorBase.h
+ *************************************************************)
+
+const
+ ftrErrInvalidParam = ftrErrorClass or 1;
+ ftrErrNoSuchFeature = ftrErrorClass or 2;
+ ftrErrAlreadyExists = ftrErrorClass or 3;
+ ftrErrROMBased = ftrErrorClass or 4;
+ ftrErrInternalErr = ftrErrorClass or 5;
+
+(************************************************************
+ * Feature Manager procedures
+ *************************************************************)
+
+// Init the feature Manager
+function FtrInit: Err; syscall sysTrapFtrInit;
+
+// Get a feature
+function FtrGet(creator: UInt32; featureNum: UInt16; var valueP: UInt32): Err; syscall sysTrapFtrGet;
+
+// Set/Create a feature.
+function FtrSet(creator: UInt32; featureNum: UInt16; newValue: UInt32): Err; syscall sysTrapFtrSet;
+
+// Unregister a feature
+function FtrUnregister(creator: UInt32; featureNum: UInt16): Err; syscall sysTrapFtrUnregister;
+
+// Get a feature by index
+function FtrGetByIndex(index: UInt16; romTable: Boolean; var creatorP: UInt32; var numP: UInt16; var valueP: UInt32): Err; syscall sysTrapFtrGetByIndex;
+
+// Get temporary space from storage heap
+function FtrPtrNew(creator: UInt32; featureNum: UInt16; size: UInt32; var newPtrP: Pointer): Err; syscall sysTrapFtrPtrNew;
+
+// Release temporary space to storage heap
+function FtrPtrFree(creator: UInt32; featureNum: UInt16): Err; syscall sysTrapFtrPtrFree;
+
+// Resize block of temporary storage
+function FtrPtrResize(creator: UInt32; featureNum: UInt16; newSize: UInt32; var newPtrP: Pointer): Err; syscall sysTrapFtrPtrResize;
+
+implementation
+
+end.