AlterOffice
AlterOffice 3.4 SDK C/C++ API Reference
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Enterable.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 
3 
4 #ifndef INCLUDED_UNO_ENTERABLE_H
5 #define INCLUDED_UNO_ENTERABLE_H
6 
7 #include "uno/environment.h"
8 
9 
10 #ifdef __cplusplus
11 extern "C"
12 {
13 #endif
14 
15 
22 typedef void uno_Enterable_enter (void * context);
23 
24 
31 typedef void uno_Enterable_leave (void * context);
32 
33 
42 typedef void uno_Enterable_callInto_v(void * context, uno_EnvCallee * pCallee, va_list * pParam);
43 
44 
53 typedef void uno_Enterable_callOut_v (void * context, uno_EnvCallee * pCallee, va_list * pParam);
54 
55 
65 typedef int uno_Enterable_isValid_v (void * context, rtl_uString ** ppReason);
66 
67 
73 typedef struct
74 {
80 }
82 
83 
84 #ifdef __cplusplus
85 }
86 #endif
87 
88 #endif
89 
90 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
void uno_Enterable_callInto_v(void *context, uno_EnvCallee *pCallee, va_list *pParam)
Generic function type declaration for calling into an Environment.
Definition: Enterable.h:42
uno_Enterable_callOut_v * m_callOut_v
Definition: Enterable.h:78
uno_Enterable_callInto_v * m_callInto_v
Definition: Enterable.h:77
void uno_Enterable_leave(void *context)
Generic function type declaration for leaving an Environment.
Definition: Enterable.h:31
uno_Enterable_enter * m_enter
Definition: Enterable.h:75
uno_Enterable_isValid_v * m_isValid
Definition: Enterable.h:79
void uno_Enterable_callOut_v(void *context, uno_EnvCallee *pCallee, va_list *pParam)
Generic function type declaration for calling out of an Environment.
Definition: Enterable.h:53
void uno_Enterable_enter(void *context)
Generic function type declaration for entering an Environment.
Definition: Enterable.h:22
A struct pReserved needs to point to, if implementing a purpose environment.
Definition: Enterable.h:73
uno_Enterable_leave * m_leave
Definition: Enterable.h:76
int uno_Enterable_isValid_v(void *context, rtl_uString **ppReason)
Generic function type declaration for checking if calling on managed object is valid.
Definition: Enterable.h:65
void uno_EnvCallee(va_list *pParam)
Typedef for variable argument function.
Definition: environment.h:322