view C++/tests/Dynlib/Plugin.cpp @ 383:403fa2642e19

Socket: add operator on addresses
author David Demelier <markand@malikania.fr>
date Tue, 23 Jun 2015 14:47:42 +0200
parents 412c3e26bb40
children 898d8b29a4f1
line wrap: on
line source

#include <string>

#include <Dynlib.h>

extern "C" {

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

}