I created a simple DLL with the following code:
#include "stdafx.h"
#include "winNT.h"
#include <stdio.h>
#include <windows.h>
UINT A_AddOne (UINT32 Base)
{
return Base + 1;
}
I created a .def file an from VB.net I can call this DLL without problems. Now I created a second DLL that calls...
Hi,
Actually I´m a VB-programmer, but I´ve a problem that I can´t resolve with VB so I come to this C forum. I need to create a DLL witch functions I can call as flat unmanaged code. For example I want to call a method named "MyFun" in the DLL "MyDLL.DLL" that accepts an UINT32 as a value...
Hi All,
I have a driver for external hardware that is in unmanaged code and I want to wrote a wrapper for this driver. Programs that use this driver will call the wrapper instead of the original driver. The wrapper will pass these calls to the original driver. Call to the driver are made by...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.