我想在我的中调用一个isapi的dll,能实现吗?

解决方案 »

  1.   

    在我的一个MFC应用中调用ISAPI,怎么调?能说得详细一点吗?
      

  2.   

    包含相应的头文件,按照编译选项增加相应的lib库When you build an MFC ISAPI DLL, use the following guidelines to select which import libraries to build with:Import library  When to use  
    eafxis.lib
     When you dynamically link to the MFC DLL in a release build.
     
    eafxisd.lib
     When you dynamically link to the MFC DLL in a debug build.
     
    nafxis.lib
     When you statically link to the MFC DLL in a release build.
     
    nafxisd.lib
     When you statically link to the MFC DLL in a debug build.
     Be aware that there is no DLL; all the ISAPI import libraries are for static linking.
      

  3.   

    我怎么能知道isapi dll里面有哪些函数吗?能用LoadLibrary()动态装载吗?