Jump to content

question to dll experts


Recommended Posts

how to manage this with autoit if possible?

here's the C code

#include
 #include
 typedef void (__declspec(dllimport) *STARTSERVER)(char *, char *,char *,int,char *);
//void Start_server(char *ID, char *repeater,char *direct,int port,char *passwd,bool proxy);
//BETA7 typedef void (__declspec(dllimport) *STARTSERVER)(char *, char *,char *,int,char *,bool);

int main(int argc, char* argv[])
     {HMODULE hDLL = LoadLibrary ("1SCDLL.dll");    
       STARTSERVER pStart_server;   
       if (hDLL != NULL)    
       {pStart_server = (STARTSERVER) GetProcAddress(hDLL,"Start_server");
       if (!pStart_server)  
       {    // handle the error 
        FreeLibrary(hDLL);  
        return 0;   }
        else    
        {   // call the function    
        pStart_server("","","localhost",5500,"");
        // Beta 7 pStart_server("","","localhost",5500,"",0);   }   
        }   
        return 0;
}
Link to comment
Share on other sites

  • 2 months later...
  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...