G
Guest
Hi
I'm trying to create a dll in VB.NET, the DLL needs to be a C type DLL, i.e. not an Active X Dll..
an example in C would be...
Example - test_ep.c
#include
/* This function simply returns the larger of x and y*
long find_max(int x,int y)
if (x >= y) return x
else return y
is this possible......
Regard
I'm trying to create a dll in VB.NET, the DLL needs to be a C type DLL, i.e. not an Active X Dll..
an example in C would be...
Example - test_ep.c
#include
/* This function simply returns the larger of x and y*
long find_max(int x,int y)
if (x >= y) return x
else return y
is this possible......
Regard