Fixed up most warnings after bacdcode changes to unsigned and signed decoding.

Fixed up the Visual C++ demo in ports/win32/bacnet/
This commit is contained in:
skarg
2006-01-16 15:00:22 +00:00
parent 2adca3320d
commit cabdeab081
25 changed files with 138 additions and 125 deletions
+4 -4
View File
@@ -48,14 +48,14 @@ typedef struct BACnet_Atomic_Read_File_Data
{
struct
{
int fileStartPosition;
unsigned requestedOctetCount;
int32_t fileStartPosition;
uint32_t requestedOctetCount;
} stream;
struct
{
int fileStartRecord;
int32_t fileStartRecord;
// requested or returned record count
unsigned RecordCount;
uint32_t RecordCount;
} record;
} type;
BACNET_OCTET_STRING fileData;