15,473
社区成员




int _tmain(int argc, _TCHAR* argv[])
{
unsigned char in[7],out[12];
HINSTANCE hDllInst = ::LoadLibraryA("sneer.dll");
if(hDllInst != 0)
{
typedef int ( _stdcall *pTN_EncryptProcess) (unsigned char *,unsigned char *);
pTN_EncryptProcess My_TN_EncryptProcess = NULL; // youFuntionNameAlias 函数别名
My_TN_EncryptProcess =(pTN_EncryptProcess)GetProcAddress(hDllInst,"TN_EncryptProcess");
int result=My_TN_EncryptProcess(out,in);
FreeLibrary(hDllInst);
}
system("pause");
return 0;
}