You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By deafult Intellisense raises and error when trying to #include "TzCfg.h .
I the TzCfg.h file on line 145 there is a declaration using 'uint' that was not recognised - changing this to 'unsigned int and error cleared. Original:
int getJson(char* hostName, int hostPort, char* hostPath, char*& jsonStr, uint& jsonSize, char* errorMsg, int errMsgSize); // <-- Performs the HTTP processing Changed:
int getJson(char* hostName, int hostPort, char* hostPath, char*& jsonStr, unsigned int& jsonSize, char* errorMsg, int errMsgSize); // <-- Performs the HTTP processing
I am not familiar with Git/Github enough to do a pull request etc..
The text was updated successfully, but these errors were encountered:
On Tue, Jul 30, 2019 at 4:22 AM Shane van Jaarsveldt < ***@***.***> wrote:
By deafult Intellisense raises and error when trying to #include "TzCfg.h .
I the TzCfg.h file on line 145 there is a declaration using 'uint' that
was not recognised - changing this to 'unsigned int and error cleared.
*Original*:
int getJson(char* hostName, int hostPort, char* hostPath, char*& jsonStr,
uint& jsonSize, char* errorMsg, int errMsgSize); // <-- Performs the HTTP
processing
*Changed*:
int getJson(char* hostName, int hostPort, char* hostPath, char*& jsonStr,
unsigned int& jsonSize, char* errorMsg, int errMsgSize); // <-- Performs
the HTTP processing
I am not familiar with Git/Github enough to do a pull request etc..
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#1?email_source=notifications&email_token=AEG6QFXYMIEIYRZUSFCDYZDQCAB4FA5CNFSM4IH2HPQ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HCH3TBQ>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AEG6QFUSIQ26A3UXBGXAP3LQCAB4FANCNFSM4IH2HPQQ>
.
By deafult Intellisense raises and error when trying to #include "TzCfg.h .
I the TzCfg.h file on line 145 there is a declaration using 'uint' that was not recognised - changing this to 'unsigned int and error cleared.
Original:
int getJson(char* hostName, int hostPort, char* hostPath, char*& jsonStr, uint& jsonSize, char* errorMsg, int errMsgSize); // <-- Performs the HTTP processing
Changed:
int getJson(char* hostName, int hostPort, char* hostPath, char*& jsonStr, unsigned int& jsonSize, char* errorMsg, int errMsgSize); // <-- Performs the HTTP processing
I am not familiar with Git/Github enough to do a pull request etc..
The text was updated successfully, but these errors were encountered: