00001 #ifndef __STP_H__
00002 #define __STP_H__
00003
00004 #ifdef __cplusplus
00005 extern "C" {
00006 #endif
00007
00008
00009
00011 void
00012 stp_init(int argc, char** argv);
00013
00015 const char*
00016 stp_get(const char* argName);
00017
00026 const char*
00027 stp_getn(const char* namespce, const char* argName);
00028
00030 void
00031 stp_put(const char* option, const char* value);
00032
00034 void
00035 stp_putn(const char* namespce, const char* option, const char* value);
00036
00039 void
00040 stp_shutdown();
00041 #define STP_BUFSIZ 1024
00042
00043
00044 #ifdef __cplusplus
00045 };
00046 #endif
00047
00048
00049 #endif
00050
00051