implib works

This commit is contained in:
Kolan Sh 2012-05-24 19:23:49 +04:00
parent 64a261d400
commit ee8c4009f9
2 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,6 @@
#include <stdio.h>
void
void //__cdecl
mylib_func (void)
{
puts ("Hello mylib_func ()! ;-)\n");

View File

@ -1,2 +1,5 @@
void
extern "C"
{
void //__cdecl
mylib_func (void);
}