// mydll.h
// For windows.h and uuid.lib, make sure
// you install the Windows SDK and set the include
// and lib directory properly through the
// Tools->OPtions...->VC++ Directories folder

#pragma once
#include <windows.h>

using namespace System;

namespace mydll {

		// TODO: Add your methods for this class here.
		extern "C"{
			__declspec(dllexport)
				void nativeFunction(void (CALLBACK *mgdFunc)(const char* str))
				{
					mgdFunc("Call to the Managed Function...this string is in xxxx.dll lor!");
				}
			}
}
