mirror of
https://github.com/davidallendj/gdpm.git
synced 2025-12-20 03:27:02 -07:00
- Updated `.gitignore` file - Updated `CMakeLists.txt` to build static exectuable - Changed some `Doxyfile` configurations to build more robust and complete documentation (WIP) - Changed how `remote` works to better reflect `git`'s API (WIP) - Changed how error handling works - Improved `bin/compile.sh` script - Improved `bin/lines.sh` script (kinda) - Removed some instances of `fmt` in favor of `std` string functions - Restructed style for better readibility
16 lines
No EOL
339 B
C++
16 lines
No EOL
339 B
C++
|
|
|
|
#include <string>
|
|
|
|
namespace gdpm::plugin{
|
|
struct info{
|
|
std::string name;
|
|
std::string description;
|
|
std::string version;
|
|
};
|
|
extern int init(int argc, char **argv);
|
|
extern int set_name(const char *name);
|
|
extern int set_description(const char *description);
|
|
extern int set_version(const char *version);
|
|
extern int finalize();
|
|
} |