view OrthancFramework/Resources/ThirdParty/minizip/ints.h @ 7154:cd2013806741 default tip

rename GetDicomConformanceStatement() as GetDicomConformanceSummary()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 22 Sep 2026 11:55:25 +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