mirror of
https://github.com/webmproject/libwebp.git
synced 2025-01-08 03:28:22 +01:00
29 lines
831 B
C
29 lines
831 B
C
|
// Copyright 2010 Google Inc.
|
||
|
//
|
||
|
// This code is licensed under the same terms as WebM:
|
||
|
// Software License Agreement: http://www.webmproject.org/license/software/
|
||
|
// Additional IP Rights Grant: http://www.webmproject.org/license/additional/
|
||
|
// -----------------------------------------------------------------------------
|
||
|
//
|
||
|
// Common types
|
||
|
//
|
||
|
// Author: Skal (pascal.massimino@gmail.com)
|
||
|
|
||
|
#ifndef WEBP_DECODE_WEBP_TYPES_H_
|
||
|
#define WEBP_DECODE_WEBP_TYPES_H_
|
||
|
|
||
|
#ifndef _MSC_VER
|
||
|
#include <inttypes.h>
|
||
|
#else
|
||
|
typedef signed char int8_t;
|
||
|
typedef unsigned char uint8_t;
|
||
|
typedef signed short int16_t;
|
||
|
typedef unsigned short uint16_t;
|
||
|
typedef signed int int32_t;
|
||
|
typedef unsigned int uint32_t;
|
||
|
typedef unsigned long long int uint64_t;
|
||
|
#define inline __forceinline
|
||
|
#endif /* _MSC_VER */
|
||
|
|
||
|
#endif /* WEBP_DECODE_WEBP_TYPES_H_ */
|