view C++/tests/Dynlib/Plugin.cpp @ 341:83ef77841ff1

Directory: dots are not listed by default
author David Demelier <markand@malikania.fr>
date Mon, 30 Mar 2015 09:21:01 +0200
parents 0b576ee64d45
children 412c3e26bb40
line wrap: on
line source

#include <string>

#include <DynLib.h>

extern "C" {

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

}