CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: alexe100

Search: Search took 0.02 seconds.

  1. Re: How to call a C function (in the host process) from a DLL

    I never thought that I could call LoadLibrary for an EXE!

    Now all makes sense for me!

    Thanks a lot

    Alex
  2. Re: How to call a C function (in the host process) from a DLL

    I am sorry, but you did not understood my problem!

    HelloWorld function does not belongs to dll! It belongs to the process!

    Look:

    test1.exe has the following functions:

    main()
  3. Re: How to call a C function (in the host process) from a DLL

    The main program is called test1. The dll is called DLLTEST. These are two projects created using codeblocks and mingw.

    On main function of test1 I do:

    hDLL = LoadLibrary("DLLTESTE.dll");...
  4. How to call a C function (in the host process) from a DLL

    Hi all
    I have a main program that loads a dll and calls functions inside dll. Everything is fine.
    Now I would like to call a function belonging to the main exe from the dll. I didi this:

    main.c:...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured