Hi! Try creating a .def file like this
LIBRARY SOMETHING
DESCRIPTION 'Killer DLL with some cool functions'
EXPORTS Hallo
and use --def geilesdeffile.def :)
BTW: You can add a different name for the function, too. Like when you want a function called "main" you normally couldn't create it, because "main" serves as the entry point. But with a line in your def file EXPORTS main=main_dummy and calling your function main_dummy in your code it works.
upcaseupCASE ----------------------------------- If it was hard to write, it should be hard to read!- Do. Or do not. There is no try! |