mirror of
https://github.com/davidallendj/gdpm.git
synced 2025-12-20 11:37:00 -07:00
First commit with most of the main features implemented. May still need some bug fixes here and there.
16 lines
No EOL
339 B
C++
16 lines
No EOL
339 B
C++
|
|
|
|
#include <string>
|
|
|
|
namespace towk::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();
|
|
} |