kolibrios-fun/contrib/sdk/sources/hello_dll/hello_test/hello.c
turbocat 19eaae5459 Added an example of how to make PE DLL libraries
git-svn-id: svn://kolibrios.org@8757 a494cfbc-eb01-0410-851d-a64ba20cac60
2021-06-01 17:01:33 +00:00

10 lines
116 B
C

#include <stdio.h>
extern void hello();
int main(int argc, char *argv[])
{
hello();
return 0;
};