diff options
author | cbdev <cb@cbcdn.com> | 2021-11-13 15:43:00 +0100 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2021-11-13 15:43:00 +0100 |
commit | ac9182ff8a6c143ed5ea663f288ea83782e3119a (patch) | |
tree | eaa4e1da7437500db196add5deb8fc622c2cb584 /portability.h | |
parent | 37af7a72ec5864e81323ce979e53e64175a3a937 (diff) | |
download | midimonster-ac9182ff8a6c143ed5ea663f288ea83782e3119a.tar.gz midimonster-ac9182ff8a6c143ed5ea663f288ea83782e3119a.tar.bz2 midimonster-ac9182ff8a6c143ed5ea663f288ea83782e3119a.zip |
Update TODO list
Diffstat (limited to 'portability.h')
-rw-r--r-- | portability.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/portability.h b/portability.h index c249a10..7a9a961 100644 --- a/portability.h +++ b/portability.h @@ -30,7 +30,9 @@ #include <winsock2.h> #define htobe16(x) htons(x) + #define htole16(x) (x) #define be16toh(x) ntohs(x) + #define letoh16(x) (x) #define htobe32(x) htonl(x) #define be32toh(x) ntohl(x) |