Skip to content
Permalink
27dfbf9a82
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
20 lines (14 sloc) 478 Bytes
#pragma once
#include <stdint.h>
#ifndef SQL_DATA_TYPES
#define SQL_STD_DATA_TYPES typedef
SQL_STD_DATA_TYPES int8_t* SQL_S8;
SQL_STD_DATA_TYPES int16_t* SQL_16;
SQL_STD_DATA_TYPES int32_t* SQL_32;
SQL_STD_DATA_TYPES int64_t* SQL_64;
#define SQL_UNSIGNED_DATA_TYPES typedef
SQL_UNSIGNED_DATA_TYPES uint8_t* SQL_U8;
SQL_UNSIGNED_DATA_TYPES uint16_t* SQL_U16;
SQL_UNSIGNED_DATA_TYPES uint32_t* SQL_U32;
SQL_UNSIGNED_DATA_TYPES uint64_t* SQL_U64;
#endif