ITK Function Reference

(V10000.1.0.60_20160308.00)
prm.h
Go to the documentation of this file.
1 /*==============================================================================
2  Copyright (c) 2003-2005 UGS Corporation
3  Unpublished - All Rights Reserved
4  ==============================================================================*/
5 
12 /* */
13 
14 #ifndef PRM_H
15 #define PRM_H
16 
17 #include <ss/ss_types.h>
18 
25 typedef void* (*PM_HandlerFp)(void*);
26 
27 #include <tc/libtc_exports.h>
28 
29 #ifdef __cplusplus
30  extern "C"{
31 #endif
32 
39 extern TC_API int PM_start_process (
40  const char* symbol,
41  void** input,
42  PM_HandlerFp handler,
43  void* handler_args,
44  SS_pid* pid
45  );
46 
50 extern TC_API void* PM_get_args(
51  void** args
52  );
53 
57 extern TC_API int PM_put_args(
58  void* value,
59  int size,
60  void** args
61  );
62 
66 extern TC_API void* PM_view_args(
67  int pos,
68  void* args
69  );
70 
73 #ifdef __cplusplus
74 }
75 #endif
76 
77 #include <tc/libtc_undef.h>
78 
79 #endif
80