邓肯球衣退役视频:怎样清空指定域下COOKIE和缓存? winapi icePubDll.dll

来源:百度文库 编辑:九乡新闻网 时间:2024/04/27 19:41:31
3.44 icePub_ClearCookiesl 函数原型:int WINAPI icePub_ClearCookies(char *strDomain)输入:strDomain 域名输出:l VC连接Lib方式声明__declspec(dllexport)int WINAPI icePub_ClearCookies(char *strDomain);l 动态调用例程VC sample代码:typedef int (WINAPI ICEPUB_CLEARCOOKIES)(char *strDomain);ICEPUB_CLEARCOOKIES *icePub_ClearCookies = 0;HINSTANCE hDLLDrv = LoadLibrary("icePubDll.dll");if(hDLLDrv){icePub_ClearCookies=(ICEPUB_CLEARCOOKIES *)GetProcAddress(hDLLDrv,"icePub_ClearCookies");}if(icePub_ClearCookies){icePub_ClearCookies("");}if(hDLLDrv)FreeLibrary(hDLLDrv);VB sample 代码:Private Declare Function icePub_ClearCookies Lib "icePubDll.dll" (ByVal strDomain As String) As IntegerPrivate Declare Function icePub_ClearCache Lib "icePubDll.dll" (ByVal strDomain As String) As IntegerDim a2 As Integera2=icePub_ClearCache("")a2=icePub_ClearCookies("")
参考资料:http://icese.net/read.php?tid=8499