First Commit
This commit is contained in:
12
include/module_interface.hpp
Normal file
12
include/module_interface.hpp
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user