导入的DLL函数抛出“术语不评估为采用1个参数的函数”错误

时间:2015-11-16 01:32:20

标签: c++ dll dllimport kerberos mit-kerberos

我正在尝试使用MIT Kerberos实现(使用k4w-4.0.1中的krb5_32.dll和相关的头文件)来获取TGT和服务票证。

我已经加载了krb5_init_context函数,根据头文件google和SO,只需要一个参数(krb5_context结构)并填充它。

#include "stdafx.h"
#include "windows.h"
#include "krb5.h"

typedef int krb5_int32;
typedef krb5_int32 krb5_error_code;

int _tmain(int argc, _TCHAR* argv[])
{    

    HMODULE kerberos = LoadLibrary(L"krb5_32.dll");
    HANDLE krb5_init_context = NULL;

    if(kerberos == NULL)
    {
        printf("Failed to load library!\n");
        printf("%lu", GetLastError());
        return -1;
    }
    else
    {
        printf("Library krb5_32.dll loaded successfully!\n");
    }

    if((krb5_init_context = GetProcAddress(kerberos, "krb5_init_context")) == NULL)
    {
        printf("GetProcAddress for krb5_init_context failed!\n");   
        return -1;
    }
    else
    {
        printf("Function krb5_init_context loaded successfully!\n");
    }

    krb5_context context = NULL;
    krb5_ccache cache = NULL;
    krb5_principal client_princ = NULL;
    char* name = NULL;
    krb5_keytab keytab = 0;
    krb5_creds creds;
    krb5_get_init_creds_opt *options = NULL;
    krb5_error_code error_code = 0; //error_status_ok;

    error_code = (*krb5_init_context)(&context);

    printf("Error Code: " + error_code);

    while(true);


    return 0;
}

1 个答案:

答案 0 :(得分:2)

要使用指针调用函数,必须声明一个函数指针。通常,函数指针(静态成员,全局或静态函数)声明如下所示:

  

typedef return_type (* alias_name)(argtype_1,argtype_2,... argtype_n);

其中return_type是返回类型,alias_name是用于声明函数指针变量的结果名称,arg1type_1, argtype_2,等是函数接受的参数类型

根据您的帖子,krb5_init_context应声明为此(使用typedef来简化操作):

typedef krb5_int32 (*context_fn)(krb5_context*);  // pointer to function type
contextfn krb5_init_context;  // declare it
//...
krb5_init_context = (context_fn)GetProcAddress(...);  // get the address
//..
krb5_context context; 
krb5_init_context(&context);  // now function can be called

完成这些更改后,请确保您还将具有匹配调用约定的函数指针声明为导出函数。如果函数为__stdcall,则需要在typedef中指定该函数。如果你不这样做,你的功能就会崩溃。

添加调用约定(这种情况,它是__stdcall):

typedef krb5_int32 (__stdcall *context_fn)(krb5_context*);