| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | #ifndef _WIZARDSTOOLKIT_CONFIGURE_H |
|---|
| 19 | #define _WIZARDSTOOLKIT_CONFIGURE_H |
|---|
| 20 | |
|---|
| 21 | #if defined(__cplusplus) || defined(c_plusplus) |
|---|
| 22 | extern "C" { |
|---|
| 23 | #endif |
|---|
| 24 | |
|---|
| 25 | #include "wizard/hashmap.h" |
|---|
| 26 | |
|---|
| 27 | typedef struct _ConfigureInfo |
|---|
| 28 | { |
|---|
| 29 | char |
|---|
| 30 | *path, |
|---|
| 31 | *name, |
|---|
| 32 | *value; |
|---|
| 33 | |
|---|
| 34 | WizardBooleanType |
|---|
| 35 | exempt, |
|---|
| 36 | stealth; |
|---|
| 37 | |
|---|
| 38 | unsigned long |
|---|
| 39 | signature; |
|---|
| 40 | } ConfigureInfo; |
|---|
| 41 | |
|---|
| 42 | extern WizardExport char |
|---|
| 43 | **GetConfigureList(const char *,unsigned long *,ExceptionInfo *); |
|---|
| 44 | |
|---|
| 45 | extern WizardExport const char |
|---|
| 46 | *GetConfigureValue(const ConfigureInfo *); |
|---|
| 47 | |
|---|
| 48 | extern WizardExport const ConfigureInfo |
|---|
| 49 | *GetConfigureInfo(const char *,ExceptionInfo *), |
|---|
| 50 | **GetConfigureInfoList(const char *,unsigned long *,ExceptionInfo *); |
|---|
| 51 | |
|---|
| 52 | extern WizardExport LinkedListInfo |
|---|
| 53 | *DestroyConfigureOptions(LinkedListInfo *), |
|---|
| 54 | *GetConfigurePaths(const char *,ExceptionInfo *), |
|---|
| 55 | *GetConfigureOptions(const char *,ExceptionInfo *); |
|---|
| 56 | |
|---|
| 57 | extern WizardExport WizardBooleanType |
|---|
| 58 | ConfigureComponentGenesis(void), |
|---|
| 59 | ListConfigureInfo(FILE *,ExceptionInfo *); |
|---|
| 60 | |
|---|
| 61 | extern WizardExport void |
|---|
| 62 | ConfigureComponentTerminus(void); |
|---|
| 63 | |
|---|
| 64 | #if defined(__cplusplus) || defined(c_plusplus) |
|---|
| 65 | } |
|---|
| 66 | #endif |
|---|
| 67 | |
|---|
| 68 | #endif |
|---|