summaryrefslogtreecommitdiff
path: root/trackerlogic.h
diff options
context:
space:
mode:
Diffstat (limited to 'trackerlogic.h')
-rw-r--r--trackerlogic.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/trackerlogic.h b/trackerlogic.h
index 35dd9c8..37e2451 100644
--- a/trackerlogic.h
+++ b/trackerlogic.h
@@ -11,9 +11,9 @@
11/* Should be called BYTE, WORD, DWORD - but some OSs already have that and there's no #iftypedef */ 11/* Should be called BYTE, WORD, DWORD - but some OSs already have that and there's no #iftypedef */
12/* They mark memory used as data instead of integer or human readable string - 12/* They mark memory used as data instead of integer or human readable string -
13 they should be cast before used as integer/text */ 13 they should be cast before used as integer/text */
14typedef unsigned char ot_byte; 14typedef uint8_t ot_byte;
15typedef unsigned short ot_word; 15typedef uint16_t ot_word;
16typedef unsigned long ot_dword; 16typedef uint32_t ot_dword;
17 17
18typedef ot_byte ot_hash[20]; 18typedef ot_byte ot_hash[20];
19typedef ot_dword ot_ip; 19typedef ot_dword ot_ip;