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
+3 -3
View File
@@ -47,12 +47,12 @@ typedef struct BACnet_Atomic_Write_File_Data
{
struct
{
int fileStartPosition;
int32_t fileStartPosition;
} stream;
struct
{
int fileStartRecord;
unsigned returnedRecordCount;
int32_t fileStartRecord;
uint32_t returnedRecordCount;
} record;
} type;
BACNET_OCTET_STRING fileData;