If nobody here are C# savvy, I will just shoot it off to rentacoder.com

Thanks in advance fellas!

Code: Select all
///dll import
typedef void (/*__declspec(dllimport)*/ *Start_server_fn)(char *,char *,char *,int,char *,bool,char *,bool);
typedef void (/*__declspec(dllimport)*/ *Stop_server_fn)(void);
Start_server_fn Start_server=NULL;
Stop_server_fn Stop_server=NULL;
HMODULE hDLL=NULL;
bool
ImportDLL_functions()
{
hDLL = LoadLibrary ("1SCDLL.dll");
if (!hDLL) return 0;
Start_server = (Start_server_fn) GetProcAddress(hDLL,"Start_server");
Stop_server = (Stop_server_fn) GetProcAddress(hDLL,"Stop_server");
if (!Start_server || !Stop_server)
{
// handle the error
FreeLibrary(hDLL);
return 0;
}
return 1;
}
void
Free_DLL_functions()
{
if (hDLL)
FreeLibrary(hDLL);
}
Usage: Start_server(G_IDCODE, G_CHARADRESS,G_CHARADRESS,G_PORT,Passwd,proxy,"PcHelpWare Connection",false);
Code: Select all
using System.Runtime.InteropServices;
class xyz
{
[DllImport("1SCVDLL.dll")] private static extern void Start_viewer(StringBuilder strID, StringBuilder strRepeaterAddr, int intListenPort, int intRepeaterPort, StringBuilder strPasswd, bool blDebug, bool blProxy, byte bytBandwidth, bool blUseDirectx);
.......
}