view C++/tests/Dynlib/Plugin.cpp @ 334:0b576ee64d45

* Create brand new hierarchy * Rename DynLib to Dynlib * Remove some warnings
author David Demelier <markand@malikania.fr>
date Sun, 08 Mar 2015 14:26:33 +0100
parents C++/Tests/DynLib/Plugin.cpp@4e17193db141
children 412c3e26bb40
line wrap: on
line source

#include <string>

#include <DynLib.h>

extern "C" {

void DYNLIB_EXPORT initialize(std::string &result)
{
	result = "Hello World";
}

}