呵呵,怎么会问这样的问题??
你该不会是用什么工具查看的DLL吧?
告诉你把,没有接口函数定义或者.h头文件的话,你是没办法使用的

解决方案 »

  1.   

    you can pass the ordinal number as the second parameter(lpProcName),read the comment carefully.
    FARPROC GetProcAddress(
      HMODULE hModule,    // handle to DLL module
      LPCSTR lpProcName   // function name
    );
    Parameters
    hModule 
    [in] Handle to the DLL module that contains the function or variable. The LoadLibrary or GetModuleHandle function returns this handle. 
    lpProcName 
    [in] Pointer to a null-terminated string containing the function or variable name, or the function's ordinal value. If this parameter is an ordinal value, it must be in the low-order word; the high-order word must be zero.