proxycache.h
来自「很好用的ftp源码」· C头文件 代码 · 共 22 行
H
22 行
/*****************************************************************************\
FILE: proxycache.h
DESCRIPTION:
FTP Folder uses WININET which doesn't work thru CERN proxies. In that
case, we need to hand control of the FTP URL back to the browser to do the
old URLMON handling of it. The problem is that testing for a CERN proxy
blocking access is expensive.
\*****************************************************************************/
#ifndef _PROXYCACHE_H
#define _PROXYCACHE_H
// Public APIs (DLL wide)
BOOL ProxyCache_IsProxyBlocking(LPCITEMIDLIST pidl, BOOL * pfIsBlocking);
void ProxyCache_SetProxyBlocking(LPCITEMIDLIST pidl, BOOL fIsBlocking);
#endif // _PROXYCACHE_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?