ThingWorx C SDK
twSubscribedProps.h
1 /*
2  * Copyright (C) 2015 ThingWorx Inc.
3  *
4  * Thingworx Subscribed Properties
5  */
6 
7 #include "twOSPort.h"
8 #include "twLogger.h"
9 #include "twApi.h"
10 #include "twInfoTable.h"
11 
12 #ifndef TW_SUBSCRIBED_PROPS_H
13 #define TW_SUBSCRIBED_PROPS_H
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
19 int twSubscribedPropsMgr_Initialize();
20 
21 void twSubscribedPropsMgr_Delete();
22 
23 void twSubscribedPropsMgr_SetFolding(char fold);
24 
25 int twSubscribedPropsMgr_PushSubscribedProperties(char * entityName, char forceConnect);
26 
27 int twSubscribedPropsMgr_SetPropertyVTQ(char * entityName, char * propertyName, twPrimitive * value, DATETIME timestamp, char * quality, char fold, char pushUpdate);
28 
29 #ifdef __cplusplus
30 }
31 #endif
32 
33 #endif
ThingWorx twInfoTable and twDataShape definitions and functions.
Wrappers for OS-specific functionality.
Portable ThingWorx C SDK API layer.
Structure definitions and function prototypes for the ThingWorx logging facility. ...
BaseType primitive structure.
Definition: twBaseTypes.h:207