forked from mirror/libbpg
libbpg-0.9.6
This commit is contained in:
parent
3035b41edf
commit
35a8402710
248 changed files with 232891 additions and 100 deletions
24
x265/source/compat/msvc/stdint.h
Normal file
24
x265/source/compat/msvc/stdint.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
#pragma once
|
||||
|
||||
#ifndef _MSC_VER
|
||||
#error "Use this header only with Microsoft Visual C++ compilers!"
|
||||
#endif
|
||||
|
||||
#include <crtdefs.h> // for intptr_t
|
||||
#if !defined(UINT64_MAX)
|
||||
#include <limits.h>
|
||||
#define UINT64_MAX _UI64_MAX
|
||||
#endif
|
||||
|
||||
/* a minimal set of C99 types for use with MSVC (VC9) */
|
||||
|
||||
typedef signed char int8_t;
|
||||
typedef short int int16_t;
|
||||
typedef int int32_t;
|
||||
typedef __int64 int64_t;
|
||||
|
||||
typedef unsigned char uint8_t;
|
||||
typedef unsigned short int uint16_t;
|
||||
typedef unsigned int uint32_t;
|
||||
typedef unsigned __int64 uint64_t;
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue