我想用C++擴展Python。我使用Visual C++ 2008和Python 2.7。我已經有很多的建築.dll文件的問題,最後當它似乎是一切正確的,我不能停止收到此錯誤:錯誤LNK2001:無法解析的外部符號__imp__Py_InitModule4
錯誤LNK2001:解析外部符號_ 小鬼 _Py_InitModule4
我知道這不是一個鏈接錯誤,因爲我之前有過這個錯誤(它給了我錯誤,但所有種類的Py _...函數),我已經解決了。
我不知道這是否是一個重要的數據,但我也用VC++ 2008構建了python27_d.dll。
這是代碼:
#include "Python.h"
#include <windows.h>
#include <string.h>
#include <tchar.h>
#include <stdlib.h>
#include <Aclapi.h>
struct file_perms {
char user_domain[2050];
unsigned long user_mask;
};
void lookup_sid (ACCESS_ALLOWED_ACE* pACE, char user_domain[]) {
char username[1024]="";
char domain[1024]="";
ULONG len_username = sizeof(username);
ULONG len_domain = sizeof(domain);
PSID pSID =(PSID)(&(pACE->SidStart));
SID_NAME_USE sid_name_use;
LPWSTR username1 = reinterpret_cast<LPWSTR>(username);
LPWSTR domain1 = reinterpret_cast<LPWSTR>(domain);
if (!LookupAccountSid(NULL, pSID, username1, &len_username, domain1, &len_domain, &sid_name_use)){
strcpy(user_domain, "unknown");
} else {
strcat(user_domain,domain);
strcat(user_domain,"\\");
strcat(user_domain,username);
}
}
void acl_info(PACL pACL, ULONG AceCount, file_perms fp[]){
for (ULONG acl_index = 0;acl_index < AceCount;acl_index++){
ACCESS_ALLOWED_ACE* pACE;
if (GetAce(pACL, acl_index, (PVOID*)&pACE))
{
char user_domain[2050]="";
lookup_sid(pACE,user_domain);
strcpy(fp[acl_index].user_domain,user_domain);
fp[acl_index].user_mask=(ULONG)pACE->Mask;
}
}
}
static PyObject *get_perms(PyObject *self, PyObject *args)
{
PyObject *py_perms = PyDict_New();
//get file or directory name
char *file;
if (!PyArg_ParseTuple(args, "s", &file))
return NULL;
//setup security code
PSECURITY_DESCRIPTOR pSD;
PACL pDACL;
//GetNamedSecurityInfo() will give you the DACL when you ask for
//DACL_SECURITY_INFORMATION. At this point, you have SIDs in the ACEs contained in the DACL.
LPWSTR file1 = reinterpret_cast<LPWSTR>(file);
ULONG result = GetNamedSecurityInfo(file1,SE_FILE_OBJECT, DACL_SECURITY_INFORMATION, NULL, NULL,
&pDACL, NULL, &pSD);
if (result != ERROR_SUCCESS){ return NULL;}
if (result == ERROR_SUCCESS){
ACL_SIZE_INFORMATION aclSize = {0};
if(pDACL != NULL){
if(!GetAclInformation(pDACL, &aclSize, sizeof(aclSize),
AclSizeInformation)){
return NULL;
}
}
file_perms *fp = new file_perms[aclSize.AceCount];
acl_info(pDACL, aclSize.AceCount, fp);
//Dict
for (ULONG i=0;i<sizeof(fp);i++){
PyObject *domain = Py_BuildValue("s",fp[i].user_domain);
PyObject *user = Py_BuildValue("s",fp[i].user_mask);
PyDict_SetItem(py_perms,domain,user);
}
}
return py_perms;
};
static PyMethodDef fileperm_methods[] = {
{ "get_perms", get_perms, METH_VARARGS, "Execute a shell command." },
{ NULL, NULL, 0, NULL }
};
extern "C"
__declspec(dllexport)
void init_fileperm(void)
{
PyObject *m=Py_InitModule("fileperm",fileperm_methods);
return;
}
我在Windows 7 64位工作。
我知道Py_InitModule已被棄用於Python 3,但我正在Python27(2.7.3)中工作。
有人知道我爲什麼會出現此錯誤嗎?
謝謝!
你說:「我知道這不是一個鏈接器錯誤」,但錯誤代碼LNK2001正是這樣!你忘了給項目添加一個.lib文件(或者使用#pragma comment(lib,「whatever.lib」)) – 2013-02-23 08:17:54
Py_InitModule的庫是Python.h。在發生這個錯誤之前,我有更多的錯誤(我從這個庫中使用的每個函數都有一個錯誤)。但後來我添加了庫,所有這些錯誤消失了,除了這個。這就是爲什麼我這麼說;圖書館在那裏,所以必須有另一個錯誤。 – user1930068 2013-02-24 14:43:23