Search Result

Collapse
2 results in 0.0014 seconds.
Keywords
Members
Tags
c++ dll
  •  

  • xjlian
    started a topic C# Calling C++ dll

    C# Calling C++ dll

    C++ calls:

    hData = LoadLibrary("da ta.dll");
    pMemDec=(MyFunc )GetProcAddress (hData,(char*) 11);

    In C# how calls ?
    [DllImport("kern el32.dll", SetLastError = true, CallingConventi on = CallingConventi on.StdCall)]
    public extern static IntPtr GetProcAddress( IntPtr hModule, [MarshalAs(Unman agedType.LPStr)] string lpProcName);
    See more | Go to post

  • bltfr
    started a topic how to use a native C++ dll in an ATL dll
    in C

    how to use a native C++ dll in an ATL dll

    hi,
    I have a native C++ dll and i want to call it from an atl dll.I have included the necessary header files and libraries but it doesn't work. Could you tell me the steps to do this operation?
    See more | Go to post
Working...