This commit is contained in:
2023-08-17 14:32:33 +02:00
parent c07db22aba
commit bf75988495
6 changed files with 28 additions and 22 deletions

View File

@@ -46,7 +46,7 @@ typedef uint32_t DWORD; // DWORD = unsigned 32 bit value
typedef uint16_t WORD; // WORD = unsigned 16 bit value
typedef uint8_t BYTE; // BYTE = unsigned 8 bit value
typedef uint32_t UDINT;
typedef unsigned long DATE;
typedef uint32_t DATE;
typedef uint8_t USINT;
typedef int32_t DINT;
typedef uint16_t UINT;
@@ -213,8 +213,8 @@ class PlcLicence
private:
string cidString = "";
string csdString = "";
char *cid; // CID
string csdString = "";
char *csd; // CSD
string stationName; // name of station
string distributor; // name of switch

View File

@@ -27,7 +27,7 @@ typedef uint32_t DWORD;
#endif
#ifndef DATE
typedef unsigned long DATE;
typedef uint32_t DATE;
#endif
using namespace std;