semilimes mcu sdk 1.1.5
semilimes Software Development Kit for microcontrollers
Loading...
Searching...
No Matches
p2p.h
1#ifndef _p2p_
2#define _p2p_
3
4#include "../defines.h"
5
6class P2p
7{
8public:
9
10// Function: P2p.setObj
11
12// This endpoint retrieves the p2p chats of the calling user account.
13
14// Prototype:
15// void setObj();
16
17// Parameters:
18
19// Returns:
21
22 char* getEPurl();
23
24// Function: P2p.getWSEPurl
25
26// provides this endpoint
27
28// Prototype:
29// char* getWSEPurl();
30
31// Parameters:
32
33// Returns:
35 char* getWSEPurl();
36};
37
38#endif
Definition p2p.h:7
char * getWSEPurl()
Definition p2p.cpp:32
char * getEPurl()
Definition p2p.cpp:15