First Commit

This commit is contained in:
Chris Punches
2025-02-17 23:10:35 -05:00
parent 7319217eff
commit 1ce163ef29
10 changed files with 442 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
#pragma once
#include <string>
/*
* Provides reserved symbol names we look for in modules.
*/
// Common interface for all DPM modules
extern "C" {
// Module must export this symbol to be considered valid
int dpm_module_execute(const char* command, int argc, char** argv);
}