Mercurial > hg > orthanc
view OrthancFramework/Resources/ThirdParty/minizip/ints.h @ 7129:662d58ce7ddf Orthanc-1.13.0
Orthanc-1.13.0
| author | Sebastien Jodogne <s.jodogne@gmail.com> |
|---|---|
| date | Sat, 15 Aug 2026 13:53:33 +0200 |
| parents | 17f41205ed0e |
| children |
line wrap: on
line source
#ifndef INTS_H #define INTS_H #include <stdint.h> /* This one is provided by Orthanc */ typedef int16_t i16_t; typedef int32_t i32_t; typedef int64_t i64_t; typedef int8_t i8_t; typedef uint16_t ui16_t; typedef uint32_t ui32_t; typedef uint64_t ui64_t; typedef uint8_t ui8_t; #endif
