diff options
Diffstat (limited to 'modules/example/main.cpp')
-rw-r--r-- | modules/example/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/example/main.cpp b/modules/example/main.cpp index a4c0ee6..76a004d 100644 --- a/modules/example/main.cpp +++ b/modules/example/main.cpp @@ -28,7 +28,7 @@ extern "C" __declspec(dllexport) PLUGININFO* SetPluginInfo() extern "C" int __declspec(dllexport) Load() { - std::cout<<"core run every code in this function.\n"; + MessageBoxA(0, "Plugin Example Succesful loaded", "INFO", MB_OK); return 0; //all ok, retrun 0 } |