cOMS/database/DatabaseConnection.h
Dennis Eichhorn dc9f37b726
Some checks failed
CodeQL / Analyze (${{ matrix.language }}) (autobuild, c-cpp) (push) Has been cancelled
Microsoft C++ Code Analysis / Analyze (push) Has been cancelled
update
2025-04-06 10:34:47 +00:00

24 lines
394 B
C
Executable File

/**
* Jingga
*
* @copyright Jingga
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
#ifndef COMS_DATABASE_CONNECTION_H
#define COMS_DATABASE_CONNECTION_H
#include "../stdlib/Types.h"
#include "DatabaseType.h"
struct DatabaseConnection {
void* con;
DatabaseType type;
uint16 port;
char* host;
char* name; // databse name
};
#endif