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
19 lines (12 sloc) 230 Bytes
#pragma once
#ifndef SERVER
#define SERVER
#include "sqlite3.h"
#define DATABASE sqlite3;
#define DATABASE_STATEMENT sqlite3_stmt;
typedef struct
{
const char* ERROR{};
} DATABASE_LOGIC;
#endif
#endif