Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: calderon
  • Content: Threads
  • Order by date
  1. calderon

    AccessViolationException while calling DLL

    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...
  2. calderon

    How to expose my DLL as a flat API

    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...
  3. calderon

    unmanaged calls to managed code

    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...

Part and Inventory Search

Back
Top