DI-Guy SDK Documentation  13.7
diguyCharacterGestureType.h
Go to the documentation of this file.
1 
2 /*********************************************************************
3  ** Copyright (c) 1992-2022 MAK Technologies, Inc.
4  ** All rights reserved.
5  *********************************************************************/
6 
7 
8 /*********************************************************************
9  **
10  *t diguyCharacterGestureType Type Declaration
11  **
12  */
13 
14 #ifndef __diguyCharacterGestureType_H
15 #define __diguyCharacterGestureType_H
16 
17 #ifdef SWIG
19 #else
20 #define CPLUSPLUS_ONLY
21 #endif
22 
23 extern "C" {
24 
25 #include <declspec_diguy.h>
26 
27 
28 /****************************************************************************/
30 
31 enum {
36 };
37 
38 /*l
39  *b Description:
40  **
41  ** This function converts the passed gesture type enumeration into
42  ** a NULL-terminated C-style string.
43  **
44  *b Returns:
45  **
46  ** C-style string identifying gesture type
47  **
48  *b Callable From:
49  **
50  *- - C++
51  *- - Script
52  */
53 BDI_DECLSPEC_diguy
54 const char* diguy_gesture_type_to_string(diguyCharacterGestureType gesture_type);
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
72 diguyCharacterGestureType diguy_gesture_type_from_string(const char* string);
73 
74 
75 } /* end extern "C" */
76 
77 #endif /* __diguyCharacterGestureType_H */
78 
79 
80 /*********************************************************************
81  ** Copyright (c) 1992-2022 MAK Technologies, Inc.
82  ** All rights reserved.
83  *********************************************************************/
84 
int diguyCharacterGestureType
Definition: diguyCharacterGestureType.h:26
Definition: diguyCharacterGestureType.h:30
Definition: diguyCharacterGestureType.h:29
Definition: diguyCharacterGestureType.h:32
const char * diguy_gesture_type_to_string(diguyCharacterGestureType gesture_type)
This function converts the passed gesture type enumeration into a NULL-terminated C-style string...
diguyCharacterGestureType diguy_gesture_type_from_string(const char *string)
This function converts the passed C-style string into an enumerated value.
Definition: diguyCharacterGestureType.h:31