Mercurial > hg > orthanc
view OrthancFramework/Resources/ThirdParty/minizip/ints.h @ 7146:0dd4240ea372 default tip
trying to enforce the /MT flag with MSVC
| author | Sebastien Jodogne <s.jodogne@gmail.com> |
|---|---|
| date | Wed, 09 Sep 2026 18:23:13 +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
