Jump to content

call external dll functions


sgufa
 Share

Recommended Posts

anyone able to transalte this in autoit?

#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);
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,"");             
           }        
                    }   
return 0;
}
Link to comment
Share on other sites

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...