Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. dll from win32 console.

dll from win32 console.

Scheduled Pinned Locked Moved C / C++ / MFC
c++debugginghelp
40 Posts 5 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A appollosputnik

    nothing is happening with debugger..its dll..... appearing and disappearing....please give me some suggestion how can i launch the dll application from console client. Thanks a lot for comments. Thanks Sujan

    C Offline
    C Offline
    Chris Losinger
    wrote on last edited by
    #4

    sujandasmahapatra wrote:

    nothing is happening with debugger..its dll.....

    have you tried stepping into the DLL code to see what it's doing? http://support.microsoft.com/kb/85221[^]

    image processing toolkits | batch image processing

    1 Reply Last reply
    0
    • A appollosputnik

      Dear Friends I have a mfc application which I already converted to a dll. now I want to launch that application from another win32 client application. So how I can achieve this. Any h elp would be highly appreciated. check my code snippet. //in App.h header extern "C" __declspec(dllexport) void runAppli(); //in App.cpp __declspec(dllexport) void runAppli(HWND hWnd) { AFX_MANAGE_STATE(AfxGetStaticModuleState()); } //In the client console int main(int argc, char **argv) { typedef void (*EntryPointfuncPtr)(int argc, const char * argv ); HINSTANCE LoadMe; LoadMe = LoadLibrary(L"C:\\Users\\DasmahapatraS\\Projects\\Bhagavan_Cadem\\RevolutionProj\\debug\\RevolutionProj.dll"); if (LoadMe != 0) printf("LoadMe library loaded!\n"); else printf("LoadMe library failed to load!\n"); EntryPointfuncPtr LibMainEntryPoint; LibMainEntryPoint = (EntryPointfuncPtr)GetProcAddress(LoadMe,"runAppli"); return 0; } I am not able to launch with this code. Please tell me whats going wrong... My application is appearing and disappearing from the screen. Thanks a lot for any help. Sujan

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #5

      That's hardly surprising since it's a console app trying to run a Windows DLL. you also seem to have a discrepancy between the definition of your runAppli() function and its implementation.

      Unrequited desire is character building. OriginalGriff

      A 1 Reply Last reply
      0
      • L Lost User

        That's hardly surprising since it's a console app trying to run a Windows DLL. you also seem to have a discrepancy between the definition of your runAppli() function and its implementation.

        Unrequited desire is character building. OriginalGriff

        A Offline
        A Offline
        appollosputnik
        wrote on last edited by
        #6

        I am able to reduce the code to this much but still its crashing... ///////////////////////////////////////////////////////////////////////////////////// int main(int argc, char **argv) { /* get handle to dll */ HINSTANCE hGetProcIDDLL = LoadLibrary(TEXT("C:\\Users\\DasmahapatraS\\Projects\\Bhagavan_Cadem\\RevolutionProj\\debug\\RevolutionProj.dll")); /* get pointer to the function in the dll*/ FARPROC lpfnGetProcessID = GetProcAddress(HMODULE (hGetProcIDDLL),"runAppli"); /* Define the Function in the DLL for reuse. This is just prototyping the dll's function. A mock of it. Use "stdcall" for maximum compatibility. */ typedef BOOL (* pICFUNC)(HINSTANCE, LPCSTR); pICFUNC MyFunction=NULL; ///* The actual call to the function contained in the dll */ BOOL intMyReturnVal = MyFunction(HMODULE (hGetProcIDDLL), "runAppli"); /* Release the Dll */ FreeLibrary(hGetProcIDDLL); return 0; } ///////////////////////////////////////////////////////////////////////////////////// __declspec(dllexport) void runAppli() { AFX_MANAGE_STATE(AfxGetStaticModuleState()); } ////////////////////////////////////////////////////////////////////////////////////

        L 1 Reply Last reply
        0
        • A appollosputnik

          I am able to reduce the code to this much but still its crashing... ///////////////////////////////////////////////////////////////////////////////////// int main(int argc, char **argv) { /* get handle to dll */ HINSTANCE hGetProcIDDLL = LoadLibrary(TEXT("C:\\Users\\DasmahapatraS\\Projects\\Bhagavan_Cadem\\RevolutionProj\\debug\\RevolutionProj.dll")); /* get pointer to the function in the dll*/ FARPROC lpfnGetProcessID = GetProcAddress(HMODULE (hGetProcIDDLL),"runAppli"); /* Define the Function in the DLL for reuse. This is just prototyping the dll's function. A mock of it. Use "stdcall" for maximum compatibility. */ typedef BOOL (* pICFUNC)(HINSTANCE, LPCSTR); pICFUNC MyFunction=NULL; ///* The actual call to the function contained in the dll */ BOOL intMyReturnVal = MyFunction(HMODULE (hGetProcIDDLL), "runAppli"); /* Release the Dll */ FreeLibrary(hGetProcIDDLL); return 0; } ///////////////////////////////////////////////////////////////////////////////////// __declspec(dllexport) void runAppli() { AFX_MANAGE_STATE(AfxGetStaticModuleState()); } ////////////////////////////////////////////////////////////////////////////////////

          L Offline
          L Offline
          Lost User
          wrote on last edited by
          #7

          First point: please use <pre> tags around your code so that it is more readable. Second point:

          pICFUNC MyFunction=NULL;
          ///* The actual call to the function contained in the dll */
          BOOL intMyReturnVal = MyFunction(HMODULE (hGetProcIDDLL), "runAppli");

          how do you expect a call to a NULL address not to crash?

          Unrequited desire is character building. OriginalGriff

          A 1 Reply Last reply
          0
          • L Lost User

            First point: please use <pre> tags around your code so that it is more readable. Second point:

            pICFUNC MyFunction=NULL;
            ///* The actual call to the function contained in the dll */
            BOOL intMyReturnVal = MyFunction(HMODULE (hGetProcIDDLL), "runAppli");

            how do you expect a call to a NULL address not to crash?

            Unrequited desire is character building. OriginalGriff

            A Offline
            A Offline
            appollosputnik
            wrote on last edited by
            #8

            Now I am writing like this. int main(int argc, char **argv) { /* get handle to dll */ HINSTANCE hGetProcIDDLL = LoadLibrary(TEXT("C:\\Users\\DasmahapatraS\\Projects\\Bhagavan_Cadem\\RevolutionProj\\debug\\RevolutionProj.dll")); typedef BOOL (* pICFUNC)(HINSTANCE, LPCSTR); pICFUNC lpfnGetProcessID = (pICFUNC)GetProcAddress((HMODULE) hGetProcIDDLL,"runAppli"); ///* The actual call to the function contained in the dll */ BOOL intMyReturnVal = lpfnGetProcessID((HMODULE) hGetProcIDDLL, "runAppli"); /* Release the Dll */ FreeLibrary(hGetProcIDDLL); return 0; } ////////////////////////////////////////////////////////////////////////////////////////////////////// BOOL __declspec(dllexport) runAppli(HWND hwnd, LPCSTR lpAppName) { // Only needed if resources are accessed //AFX_MANAGE_STATE(AfxGetStaticModuleState()); ::ShowWindow(hwnd, SW_SHOW); UNREFERENCED_PARAMETER(lpAppName); return true; } Somebody suggested this piece of code. But nothing is appearing with this. My mainwindow of the dll application is not coming. Can u tell me whats wrong still in this. Thanks a lot for your help. Sujan

            S 1 Reply Last reply
            0
            • A appollosputnik

              Now I am writing like this. int main(int argc, char **argv) { /* get handle to dll */ HINSTANCE hGetProcIDDLL = LoadLibrary(TEXT("C:\\Users\\DasmahapatraS\\Projects\\Bhagavan_Cadem\\RevolutionProj\\debug\\RevolutionProj.dll")); typedef BOOL (* pICFUNC)(HINSTANCE, LPCSTR); pICFUNC lpfnGetProcessID = (pICFUNC)GetProcAddress((HMODULE) hGetProcIDDLL,"runAppli"); ///* The actual call to the function contained in the dll */ BOOL intMyReturnVal = lpfnGetProcessID((HMODULE) hGetProcIDDLL, "runAppli"); /* Release the Dll */ FreeLibrary(hGetProcIDDLL); return 0; } ////////////////////////////////////////////////////////////////////////////////////////////////////// BOOL __declspec(dllexport) runAppli(HWND hwnd, LPCSTR lpAppName) { // Only needed if resources are accessed //AFX_MANAGE_STATE(AfxGetStaticModuleState()); ::ShowWindow(hwnd, SW_SHOW); UNREFERENCED_PARAMETER(lpAppName); return true; } Somebody suggested this piece of code. But nothing is appearing with this. My mainwindow of the dll application is not coming. Can u tell me whats wrong still in this. Thanks a lot for your help. Sujan

              S Offline
              S Offline
              Stephen Hewitt
              wrote on last edited by
              #9

              LoadLibrary[^] returns a HMODULE, not HINSTANCE. Alter the DLL loading to look like this:

              HMODULE hDll = LoadLibrary(_T("C:\\Users\\DasmahapatraS\\Projects\\Bhagavan_Cadem\\RevolutionProj\\debug\\RevolutionProj.dll"));

              Secondly, lose the cast like this (since you're now using the correct type above):

              typedef BOOL (*PFUNC)(HINSTANCE, LPCSTR);
              PFUNC pProc = (PFUNC)GetProcAddress(hDll, "runAppli");

              Note also that I've added a _T (same as TEXT) which you left out. Now a guess at the cause of your problems: GetProcAddress[^] is failing because you're using the wrong function name by ignoring name mangling[^]. Change the DLL like this:

              extern "C" BOOL __declspec(dllexport) runAppli(HWND hwnd, LPCSTR lpAppName)

              Steve

              A 2 Replies Last reply
              0
              • S Stephen Hewitt

                LoadLibrary[^] returns a HMODULE, not HINSTANCE. Alter the DLL loading to look like this:

                HMODULE hDll = LoadLibrary(_T("C:\\Users\\DasmahapatraS\\Projects\\Bhagavan_Cadem\\RevolutionProj\\debug\\RevolutionProj.dll"));

                Secondly, lose the cast like this (since you're now using the correct type above):

                typedef BOOL (*PFUNC)(HINSTANCE, LPCSTR);
                PFUNC pProc = (PFUNC)GetProcAddress(hDll, "runAppli");

                Note also that I've added a _T (same as TEXT) which you left out. Now a guess at the cause of your problems: GetProcAddress[^] is failing because you're using the wrong function name by ignoring name mangling[^]. Change the DLL like this:

                extern "C" BOOL __declspec(dllexport) runAppli(HWND hwnd, LPCSTR lpAppName)

                Steve

                A Offline
                A Offline
                appollosputnik
                wrote on last edited by
                #10

                With this even its not happening stephen... _T is not compiling so I have put only the text. its compiling Now the code looks like this.. int main(int argc, char **argv) { /* get handle to dll */ HMODULE hDll = LoadLibrary(TEXT("C:\\Users\\DasmahapatraS\\Projects\\Bhagavan_Cadem\\RevolutionProj\\debug\\RevolutionProj.dll")); typedef BOOL (* ICFUNC)(HINSTANCE, LPCSTR); ICFUNC lpfnGetProcessID = (ICFUNC)GetProcAddress(hDll, "runAppli"); ///* The actual call to the function contained in the dll */ BOOL intMyReturnVal = lpfnGetProcessID(hDll, "runAppli"); /* Release the Dll */ FreeLibrary(hDll); return 0; } extern "C" BOOL __declspec(dllexport) runAppli(HWND hwnd, LPCSTR lpAppName) { // Only needed if resources are accessed //AFX_MANAGE_STATE(AfxGetStaticModuleState()); ::ShowWindow(hwnd, SW_SHOW); UNREFERENCED_PARAMETER(lpAppName); return true; }

                S 1 Reply Last reply
                0
                • S Stephen Hewitt

                  LoadLibrary[^] returns a HMODULE, not HINSTANCE. Alter the DLL loading to look like this:

                  HMODULE hDll = LoadLibrary(_T("C:\\Users\\DasmahapatraS\\Projects\\Bhagavan_Cadem\\RevolutionProj\\debug\\RevolutionProj.dll"));

                  Secondly, lose the cast like this (since you're now using the correct type above):

                  typedef BOOL (*PFUNC)(HINSTANCE, LPCSTR);
                  PFUNC pProc = (PFUNC)GetProcAddress(hDll, "runAppli");

                  Note also that I've added a _T (same as TEXT) which you left out. Now a guess at the cause of your problems: GetProcAddress[^] is failing because you're using the wrong function name by ignoring name mangling[^]. Change the DLL like this:

                  extern "C" BOOL __declspec(dllexport) runAppli(HWND hwnd, LPCSTR lpAppName)

                  Steve

                  A Offline
                  A Offline
                  appollosputnik
                  wrote on last edited by
                  #11

                  Now the code is looking like this ....But still application is not launching. int main(int argc, char **argv) { /* get handle to dll */ HMODULE hDll = LoadLibrary(TEXT("C:\\Users\\DasmahapatraS\\Projects\\Bhagavan_Cadem\\RevolutionProj\\debug\\RevolutionProj.dll")); typedef BOOL (* ICFUNC)(HINSTANCE, LPCSTR); ICFUNC lpfnGetProcessID = (ICFUNC)GetProcAddress(hDll, "runAppli"); ///* The actual call to the function contained in the dll */ BOOL intMyReturnVal = lpfnGetProcessID(hDll, "runAppli"); /* Release the Dll */ FreeLibrary(hDll); return 0; } /////////////////////////////////////////////////////////////////////////////////////////////////////////// extern "C" BOOL __declspec(dllexport) runAppli(HWND hwnd, LPCSTR lpAppName) { // Only needed if resources are accessed //AFX_MANAGE_STATE(AfxGetStaticModuleState()); ::ShowWindow(hwnd, SW_SHOW); UNREFERENCED_PARAMETER(lpAppName); return true; }

                  S 1 Reply Last reply
                  0
                  • A appollosputnik

                    With this even its not happening stephen... _T is not compiling so I have put only the text. its compiling Now the code looks like this.. int main(int argc, char **argv) { /* get handle to dll */ HMODULE hDll = LoadLibrary(TEXT("C:\\Users\\DasmahapatraS\\Projects\\Bhagavan_Cadem\\RevolutionProj\\debug\\RevolutionProj.dll")); typedef BOOL (* ICFUNC)(HINSTANCE, LPCSTR); ICFUNC lpfnGetProcessID = (ICFUNC)GetProcAddress(hDll, "runAppli"); ///* The actual call to the function contained in the dll */ BOOL intMyReturnVal = lpfnGetProcessID(hDll, "runAppli"); /* Release the Dll */ FreeLibrary(hDll); return 0; } extern "C" BOOL __declspec(dllexport) runAppli(HWND hwnd, LPCSTR lpAppName) { // Only needed if resources are accessed //AFX_MANAGE_STATE(AfxGetStaticModuleState()); ::ShowWindow(hwnd, SW_SHOW); UNREFERENCED_PARAMETER(lpAppName); return true; }

                    S Offline
                    S Offline
                    Stephen Hewitt
                    wrote on last edited by
                    #12

                    sujandasmahapatra wrote:

                    With this even its not happening stephen...
                    _T is not compiling so I have put only the text. its compiling

                    Yeah, I was wrong on that point. You don't use _T on GetProcAddress. I have modified my post to reflect this.   So it works now?

                    Steve

                    1 Reply Last reply
                    0
                    • A appollosputnik

                      Now the code is looking like this ....But still application is not launching. int main(int argc, char **argv) { /* get handle to dll */ HMODULE hDll = LoadLibrary(TEXT("C:\\Users\\DasmahapatraS\\Projects\\Bhagavan_Cadem\\RevolutionProj\\debug\\RevolutionProj.dll")); typedef BOOL (* ICFUNC)(HINSTANCE, LPCSTR); ICFUNC lpfnGetProcessID = (ICFUNC)GetProcAddress(hDll, "runAppli"); ///* The actual call to the function contained in the dll */ BOOL intMyReturnVal = lpfnGetProcessID(hDll, "runAppli"); /* Release the Dll */ FreeLibrary(hDll); return 0; } /////////////////////////////////////////////////////////////////////////////////////////////////////////// extern "C" BOOL __declspec(dllexport) runAppli(HWND hwnd, LPCSTR lpAppName) { // Only needed if resources are accessed //AFX_MANAGE_STATE(AfxGetStaticModuleState()); ::ShowWindow(hwnd, SW_SHOW); UNREFERENCED_PARAMETER(lpAppName); return true; }

                      S Offline
                      S Offline
                      Stephen Hewitt
                      wrote on last edited by
                      #13

                      Why are you passing a HMODULE when a HWND is expected?

                      sujandasmahapatra wrote:

                      BOOL intMyReturnVal = lpfnGetProcessID(hDll, "runAppli");

                      sujandasmahapatra wrote:

                      extern "C" BOOL __declspec(dllexport) runAppli(HWND hwnd, LPCSTR lpAppName)

                      Steve

                      A 4 Replies Last reply
                      0
                      • S Stephen Hewitt

                        Why are you passing a HMODULE when a HWND is expected?

                        sujandasmahapatra wrote:

                        BOOL intMyReturnVal = lpfnGetProcessID(hDll, "runAppli");

                        sujandasmahapatra wrote:

                        extern "C" BOOL __declspec(dllexport) runAppli(HWND hwnd, LPCSTR lpAppName)

                        Steve

                        A Offline
                        A Offline
                        appollosputnik
                        wrote on last edited by
                        #14

                        With this even its not launching the application. simply returning. dll application is not launching. some more things are missing it seems. Please let me know if you're able to figure it out. Thanks for your help sujan

                        1 Reply Last reply
                        0
                        • S Stephen Hewitt

                          Why are you passing a HMODULE when a HWND is expected?

                          sujandasmahapatra wrote:

                          BOOL intMyReturnVal = lpfnGetProcessID(hDll, "runAppli");

                          sujandasmahapatra wrote:

                          extern "C" BOOL __declspec(dllexport) runAppli(HWND hwnd, LPCSTR lpAppName)

                          Steve

                          A Offline
                          A Offline
                          appollosputnik
                          wrote on last edited by
                          #15

                          typedef BOOL (* ICFUNC)(HINSTANCE, LPCSTR); ICFUNC lpfnGetProcessID = (ICFUNC)GetProcAddress(hDll, "runAppli"); ///* The actual call to the function contained in the dll */ BOOL intMyReturnVal = lpfnGetProcessID(hDll, "runAppli"); lpfnGetProcessID expects a HMODULE right...? Is it wrong. ??

                          1 Reply Last reply
                          0
                          • S Stephen Hewitt

                            Why are you passing a HMODULE when a HWND is expected?

                            sujandasmahapatra wrote:

                            BOOL intMyReturnVal = lpfnGetProcessID(hDll, "runAppli");

                            sujandasmahapatra wrote:

                            extern "C" BOOL __declspec(dllexport) runAppli(HWND hwnd, LPCSTR lpAppName)

                            Steve

                            A Offline
                            A Offline
                            appollosputnik
                            wrote on last edited by
                            #16

                            How can I get the handle from the client console and pass it to the lpfnGetProcessID .... to runAppli....With the code below I am getting run-time error. that hwnd being used without being intialized.. Please tell me how can I initialize hwnd. Thanks Sujan int main(int argc, char **argv) { HWND hwnd; /* get handle to dll */ HMODULE hDll = LoadLibrary(TEXT("C:\\Users\\DasmahapatraS\\Projects\\Bhagavan_Cadem\\RevolutionProj\\debug\\RevolutionProj.dll")); typedef BOOL (* ICFUNC)(HWND, LPCSTR); ICFUNC lpfnGetProcessID = (ICFUNC)GetProcAddress(hDll, "runAppli"); ///* The actual call to the function contained in the dll */ BOOL intMyReturnVal = lpfnGetProcessID(hwnd, "runAppli"); /* Release the Dll */ FreeLibrary(hDll); return 0; }

                            S 1 Reply Last reply
                            0
                            • A appollosputnik

                              How can I get the handle from the client console and pass it to the lpfnGetProcessID .... to runAppli....With the code below I am getting run-time error. that hwnd being used without being intialized.. Please tell me how can I initialize hwnd. Thanks Sujan int main(int argc, char **argv) { HWND hwnd; /* get handle to dll */ HMODULE hDll = LoadLibrary(TEXT("C:\\Users\\DasmahapatraS\\Projects\\Bhagavan_Cadem\\RevolutionProj\\debug\\RevolutionProj.dll")); typedef BOOL (* ICFUNC)(HWND, LPCSTR); ICFUNC lpfnGetProcessID = (ICFUNC)GetProcAddress(hDll, "runAppli"); ///* The actual call to the function contained in the dll */ BOOL intMyReturnVal = lpfnGetProcessID(hwnd, "runAppli"); /* Release the Dll */ FreeLibrary(hDll); return 0; }

                              S Offline
                              S Offline
                              Stephen Hewitt
                              wrote on last edited by
                              #17

                              You're not explaining yourself very clearly but it sounds like you might be after the GetConsoleWindow function.

                              Steve

                              A 2 Replies Last reply
                              0
                              • S Stephen Hewitt

                                You're not explaining yourself very clearly but it sounds like you might be after the GetConsoleWindow function.

                                Steve

                                A Offline
                                A Offline
                                appollosputnik
                                wrote on last edited by
                                #18

                                extern "C" BOOL __declspec(dllexport) runAppli(HWND hwnd, LPCSTR lpAppName) { // Only needed if resources are accessed //AFX_MANAGE_STATE(AfxGetStaticModuleState()); ::ShowWindow(hwnd, SW_SHOW); UNREFERENCED_PARAMETER(lpAppName); return true; } So I need to pass hwnd to this function right..? Is it necessary to launch my dll application. I just want to launch the application.

                                S 1 Reply Last reply
                                0
                                • A appollosputnik

                                  extern "C" BOOL __declspec(dllexport) runAppli(HWND hwnd, LPCSTR lpAppName) { // Only needed if resources are accessed //AFX_MANAGE_STATE(AfxGetStaticModuleState()); ::ShowWindow(hwnd, SW_SHOW); UNREFERENCED_PARAMETER(lpAppName); return true; } So I need to pass hwnd to this function right..? Is it necessary to launch my dll application. I just want to launch the application.

                                  S Offline
                                  S Offline
                                  Stephen Hewitt
                                  wrote on last edited by
                                  #19

                                  Why don't you explain exactly what you are trying to do?

                                  Steve

                                  A 2 Replies Last reply
                                  0
                                  • S Stephen Hewitt

                                    You're not explaining yourself very clearly but it sounds like you might be after the GetConsoleWindow function.

                                    Steve

                                    A Offline
                                    A Offline
                                    appollosputnik
                                    wrote on last edited by
                                    #20

                                    I have made some changes in the code let me know whats wrong in this my application is not launching. int main(int argc, char **argv) { HWND hWnd=NULL; /* get handle to dll */ HMODULE hDll = LoadLibrary(TEXT("C:\\Users\\DasmahapatraS\\Projects\\Bhagavan_Cadem\\RevolutionProj\\debug\\RevolutionProj.dll")); typedef BOOL (* ICFUNC)(LPCSTR); ICFUNC lpfnGetProcessID = (ICFUNC)GetProcAddress(hDll, "runAppli"); ///* The actual call to the function contained in the dll */ BOOL intMyReturnVal = lpfnGetProcessID("runAppli"); /* Release the Dll */ FreeLibrary(hDll); return 0; } //////////////////////////////////////////////////////////////////////////////////////////////////// extern "C" BOOL __declspec(dllexport) runAppli(LPCSTR lpAppName) { // Only needed if resources are accessed //AFX_MANAGE_STATE(AfxGetStaticModuleState()); ::ShowWindow( AfxGetMainWnd()->GetSafeHwnd(), SW_SHOW); UNREFERENCED_PARAMETER(lpAppName); return true; }

                                    L 1 Reply Last reply
                                    0
                                    • S Stephen Hewitt

                                      Why don't you explain exactly what you are trying to do?

                                      Steve

                                      A Offline
                                      A Offline
                                      appollosputnik
                                      wrote on last edited by
                                      #21

                                      I want to launch my dll application from win32 client exe.......Can u help me whats need be done Thanks for your help.

                                      1 Reply Last reply
                                      0
                                      • S Stephen Hewitt

                                        Why don't you explain exactly what you are trying to do?

                                        Steve

                                        A Offline
                                        A Offline
                                        appollosputnik
                                        wrote on last edited by
                                        #22

                                        I want to show the mainwindow of the dll application from win32 client. I am able to load the dll but I am confused what need to be done after that to show the mainwindow. Please help Stephen. Thanks Sujan

                                        S 1 Reply Last reply
                                        0
                                        • A appollosputnik

                                          I have made some changes in the code let me know whats wrong in this my application is not launching. int main(int argc, char **argv) { HWND hWnd=NULL; /* get handle to dll */ HMODULE hDll = LoadLibrary(TEXT("C:\\Users\\DasmahapatraS\\Projects\\Bhagavan_Cadem\\RevolutionProj\\debug\\RevolutionProj.dll")); typedef BOOL (* ICFUNC)(LPCSTR); ICFUNC lpfnGetProcessID = (ICFUNC)GetProcAddress(hDll, "runAppli"); ///* The actual call to the function contained in the dll */ BOOL intMyReturnVal = lpfnGetProcessID("runAppli"); /* Release the Dll */ FreeLibrary(hDll); return 0; } //////////////////////////////////////////////////////////////////////////////////////////////////// extern "C" BOOL __declspec(dllexport) runAppli(LPCSTR lpAppName) { // Only needed if resources are accessed //AFX_MANAGE_STATE(AfxGetStaticModuleState()); ::ShowWindow( AfxGetMainWnd()->GetSafeHwnd(), SW_SHOW); UNREFERENCED_PARAMETER(lpAppName); return true; }

                                          L Offline
                                          L Offline
                                          Lost User
                                          wrote on last edited by
                                          #23

                                          Please put <pre> tags around your code as requested, so it is clearly readable As to your code, this shows that you really do not understand how to create a Windows application. You are getting the address of the runAppli() function and then calling it with "runAppli" as its input parameter, which is declared as UNREFERENCED_PARAMETER and hence has no purpose. The runAppli function itself is trying to show a window which does not exist, and using an MFC call even though the MFC environment has not been initialised. The net result is that the function will fail but will not give you any indication of why because you do not check for errors. This program will never work however much you play with it. I would suggest you use the wizard in your Visual Studio IDE to create a proper Windows/MFC program, and examine the source and read the documentation to understand how the various pieces fit together.

                                          Unrequited desire is character building. OriginalGriff

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups