954,499 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

calling a function in DLL file ???

I did make my dll file out off those two files

dll.h

#ifndef _DLL_H_
#define _DLL_H_

#if BUILDING_DLL
# define DLLIMPORT __declspec (dllexport)
#else /* Not BUILDING_DLL */
# define DLLIMPORT __declspec (dllimport)
#endif /* Not BUILDING_DLL */

DLLIMPORT void welcome();

class DLLIMPORT DllClass
{
  public:
    DllClass();
    virtual ~DllClass(void);

  private:

};


#endif /* _DLL_H_ */


and dllmain.cpp

/* Replace "dll.h" with the name of your header */
#include "dll.h"
#include <windows.h>
#include<iostream>
using namespace std;
DllClass::DllClass()
{

}


DllClass::~DllClass ()
{

}

DLLIMPORT void welcome()
{
  cout << " Welcome home " << endl;
}

BOOL APIENTRY DllMain (HINSTANCE hInst     /* Library instance handle. */ ,
                       DWORD reason        /* Reason this function is being called. */ ,
                       LPVOID reserved     /* Not used. */ )
{
    switch (reason)
    {
      case DLL_PROCESS_ATTACH:
        break;

      case DLL_PROCESS_DETACH:
        break;

      case DLL_THREAD_ATTACH:
        break;

      case DLL_THREAD_DETACH:
        break;
    }

    /* Returns TRUE on success, FALSE on failure */
    return TRUE;
}


now I want to call welcome() function in this DLL from my test_main.cpp

main.cpp

#include <cstdlib>
#include <iostream>
#include<project3.dll> // <<---------- the dll file include 
 
using namespace std;

int main(int argc, char *argv[])
{
    welcome();           // <<------ this function in the DLL
    system("PAUSE");
    return EXIT_SUCCESS;
}


but I got those errors

3 \including dll\main.cpp project3.dll: No such file or directory. 
9 \including dll\main.cpp `welcome' undeclared (first use this function)


I have project.dll in the directory

And when I made the dll file I didn't have anyfile *.lib

I only have a file libProject3.def I tried to include it but it won't work either

any advice please ?

Thanks

Jacky1
Junior Poster in Training
51 posts since Nov 2007
Reputation Points: 10
Solved Threads: 2
 

include the dll.h header, and not the project3.dll file.

Make an import library - the .lib file, should be an option in your compiler/linker

link the .lib file into your project. The program will know how to access the .dll file from the details stored in the .lib file.

dougy83
Posting Whiz in Training
275 posts since Jun 2007
Reputation Points: 85
Solved Threads: 45
 

include the dll.h header, and not the project3.dll file.

Make an import library - the .lib file, should be an option in your compiler/linker

link the .lib file into your project. The program will know how to access the .dll file from the details stored in the .lib file.

Thanks man I found out that the lib file was with extinction .a and I just linked in the project options as you said

Thanks again

Jacky1
Junior Poster in Training
51 posts since Nov 2007
Reputation Points: 10
Solved Threads: 2
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You