mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
16 lines
311 B
C
16 lines
311 B
C
|
#ifndef SDKTYPES_H
|
||
|
#define SDKTYPES_H
|
||
|
|
||
|
// Common type declarations to reduce code verbosity.
|
||
|
using std::string;
|
||
|
using std::vector;
|
||
|
using std::fstream;
|
||
|
using std::ifstream;
|
||
|
using std::ofstream;
|
||
|
using std::ostringstream;
|
||
|
|
||
|
namespace fs = std::filesystem;
|
||
|
typedef const unsigned char* rsig_t;
|
||
|
|
||
|
#endif // SDKTYPES_H
|