All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.mihosoft.vtcc.tccdist.windows.x64.tcc.examples.dll.c Maven / Gradle / Ivy

The newest version!
//+---------------------------------------------------------------------------
//
//  dll.c - Windows DLL example - dynamically linked part
//

#include 

__declspec(dllexport) const char *hello_data = "(not set)";

__declspec(dllexport) void hello_func (void)
{
    MessageBox (0, hello_data, "From DLL", MB_ICONINFORMATION);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy