头文件中:
#ifndef _Personalize_H_
#define _Personalize_H_
#include "Tpm.h"
LIB_EXPORT UINT32 calc(UINT32 rand);
#endif // _Personalize_H_
.c文件中
//** Functions
LIB_EXPORT UINT32 calc(UINT32 rand)
{
return rand;
}
查看dll中是否存在某个函数
dumpbin.exe /exports tpm.dll > xxx.txt