Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/clientserver/udaStructs.h
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ typedef struct Environment {

void freeClientPutDataBlockList(PUTDATA_BLOCK_LIST* putDataBlockList);

void freeDataBlock(DATA_BLOCK* data_block);
LIBRARY_API void freeDataBlock(DATA_BLOCK* data_block);

void freeDataBlockList(DATA_BLOCK_LIST* data_block_list);

Expand Down
6 changes: 3 additions & 3 deletions source/wrappers/c++/client.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class Result;
class Signal;
class Client;

class ResultList {
class LIBRARY_API ResultList {
public:
ResultList(std::unordered_map<int, size_t> indices, Client& client);
const Result& at(int handle) const;
Expand All @@ -151,7 +151,7 @@ class LIBRARY_API Client {
static std::string serverHostName();
static int serverPort();

const char *getErrorMsg(int handle);
const char *getErrorMsg(int handle);

const uda::Result& get(const std::string& signalName, const std::string& dataSource);

Expand All @@ -161,7 +161,7 @@ class LIBRARY_API Client {
int getFileID(int handle);

int put(const uda::Signal& putdata);

int put(const std::string& instruction);

int put(const std::string& instruction, char data);
Expand Down
Loading