DI-Guy SDK Documentation  13.8
diguyConnectionPointType.h
Go to the documentation of this file.
1 /****************************************************************************
2  * Copyright (c) 2024 MAK Technologies, Inc.
3  * All rights reserved.
4  ****************************************************************************/
5 
6 /*********************************************************************
7  **
8  *t diguyConnectionPointType Type Declaration
9  **
10  */
11 
12 #ifndef __diguyConnectionPointType_H
13 #define __diguyConnectionPointType_H
14 
15 #ifdef SWIG
17 #else
18 #define CPLUSPLUS_ONLY
19 #endif
20 
21 extern "C" {
22 
23 #include <declspec_diguy.h>
24 
25 
26 /****************************************************************************/
27 
38  DIGUY_CONNECTION_POINT_EXHAUST = 0x00000100,
40 
41 };
42 const int DIGUY_CONNECTION_POINT_COUNT = 10;
43 /*l
44  *b Description:
45  **
46  ** This function converts the passed connection type enumeration into
47  ** a NULL-terminated C-style string.
48  **
49  *b Returns:
50  **
51  ** C-style string identifying gesture type
52  */
53 BDI_DECLSPEC_diguy
55 
56 /*l
57  *b Description:
58  **
59  ** This function converts the passed C-style string into an
60  ** enumerated value.
61  **
62  *b Returns:
63  **
64  ** enumeration value of gesture type
65  **
66  *b Callable From:
67  **
68  *- - C++
69  *- - Script
70  */
71 BDI_DECLSPEC_diguy
73 
74 
75 } /* end extern "C" */
76 
77 #endif /* __diguyConnectionPointType_H */
78 
79 
80 /*********************************************************************
81  ** Copyright (c) 1992-2022 MAK Technologies, Inc.
82  ** All rights reserved.
83  *********************************************************************/
84 
Definition: diguyConnectionPointType.h:29
Definition: diguyConnectionPointType.h:28
Definition: diguyConnectionPointType.h:33
const char * diguy_connection_point_type_to_string(diguyConnectionPointType connection_type)
This function converts the passed connection type enumeration into a NULL-terminated C-style string...
const int DIGUY_CONNECTION_POINT_COUNT
Definition: diguyConnectionPointType.h:40
Definition: diguyConnectionPointType.h:30
diguyConnectionPointType
Definition: diguyConnectionPointType.h:26
Definition: diguyConnectionPointType.h:32
Definition: diguyConnectionPointType.h:36
diguyConnectionPointType diguy_connection_point_type_from_string(const char *string)
This function converts the passed C-style string into an enumerated value.
Definition: diguyConnectionPointType.h:37
Definition: diguyConnectionPointType.h:34
Definition: diguyConnectionPointType.h:31
Definition: diguyConnectionPointType.h:27
Definition: diguyConnectionPointType.h:35