Bitcoin
src
leveldb
port
win
stdint.h
Go to the documentation of this file.
1
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file. See the AUTHORS file for names of contributors.
4
5
// MSVC didn't ship with this file until the 2010 version.
6
7
#ifndef STORAGE_LEVELDB_PORT_WIN_STDINT_H_
8
#define STORAGE_LEVELDB_PORT_WIN_STDINT_H_
9
10
#if !defined(_MSC_VER)
11
#error This file should only be included when compiling with MSVC.
12
#endif
13
14
// Define C99 equivalent types.
15
typedef
signed
char
int8_t
;
16
typedef
signed
short
int16_t
;
17
typedef
signed
int
int32_t
;
18
typedef
signed
long
long
int64_t
;
19
typedef
unsigned
char
uint8_t
;
20
typedef
unsigned
short
uint16_t
;
21
typedef
unsigned
int
uint32_t
;
22
typedef
unsigned
long
long
uint64_t
;
23
24
#endif // STORAGE_LEVELDB_PORT_WIN_STDINT_H_
uint16_t
unsigned short uint16_t
Definition:
stdint.h:20
uint8_t
unsigned char uint8_t
Definition:
stdint.h:19
uint32_t
unsigned int uint32_t
Definition:
stdint.h:21
int16_t
signed short int16_t
Definition:
stdint.h:16
uint64_t
unsigned long long uint64_t
Definition:
stdint.h:22
int8_t
signed char int8_t
Definition:
stdint.h:15
int64_t
signed long long int64_t
Definition:
stdint.h:18
int32_t
signed int int32_t
Definition:
stdint.h:17
Generated by
1.8.15