Skip to content
Snippets Groups Projects
Commit 24eb3d90 authored by xiyehu2's avatar xiyehu2
Browse files

unsafe 64bit int type fix

parent f72511f5
No related branches found
No related tags found
No related merge requests found
#ifndef DLLTYP_H
#define DLLTYP_H
#include <cstdint>
/*
......@@ -274,11 +274,11 @@ this compiler and the platform
# endif
# define int16 short int
# define int32 int
# define int64 long long
# define int64 int64_t
# define uint8 unsigned char
# define uint16 unsigned short int
# define uint32 unsigned int
# define uint64 unsigned long long
# define uint64 uint64_t
# define dataptr void *
# define ptr8 int8*
# define ptr16 int16*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment