The Pubnub C-core library. It's home is on https://github.com/pubnub/c_core, this is a copy

Dependents:   Pubnub_c_core_mbed2_pal Pubnub_c_core_mbed2_pal Pubnub_c_core_mbed2_pal2

Committer:
sveljko
Date:
Tue Nov 22 22:21:39 2016 +0000
Revision:
2:d85e42c1125d
Parent:
0:d13755cfb705
Added `pubnub_helper` module

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sveljko 0:d13755cfb705 1 /* -*- c-file-style:"stroustrup"; indent-tabs-mode: nil -*- */
sveljko 0:d13755cfb705 2 #if !defined INC_PUBNUB_VERSION
sveljko 0:d13755cfb705 3 #define INC_PUBNUB_VERSION
sveljko 0:d13755cfb705 4
sveljko 0:d13755cfb705 5
sveljko 0:d13755cfb705 6 /** @file pubnub_version.h
sveljko 0:d13755cfb705 7 This is the name / version API of the Pubnub client library.
sveljko 0:d13755cfb705 8 It has the functions that are present in all variants and
sveljko 0:d13755cfb705 9 platforms and have the same interface in all of them.
sveljko 0:d13755cfb705 10 */
sveljko 0:d13755cfb705 11
sveljko 0:d13755cfb705 12
sveljko 0:d13755cfb705 13 /** Returns a string with the name of the Pubnub SDK client you
sveljko 0:d13755cfb705 14 are using.
sveljko 0:d13755cfb705 15 */
sveljko 0:d13755cfb705 16 char const *pubnub_sdk_name(void);
sveljko 0:d13755cfb705 17
sveljko 0:d13755cfb705 18 /** Returns a string with the version of the Pubnub SDK client you are
sveljko 0:d13755cfb705 19 using.
sveljko 0:d13755cfb705 20 */
sveljko 0:d13755cfb705 21 char const *pubnub_version(void);
sveljko 0:d13755cfb705 22
sveljko 0:d13755cfb705 23 /** Returns an URL encoded string with the full identification of the
sveljko 0:d13755cfb705 24 SDK - name, version, possible something more.
sveljko 0:d13755cfb705 25 */
sveljko 0:d13755cfb705 26 char const *pubnub_uname(void);
sveljko 0:d13755cfb705 27
sveljko 0:d13755cfb705 28
sveljko 0:d13755cfb705 29 #endif /* !defined INC_PUBNUB_VERSION */