You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
658 B
20 lines
658 B
/**************************************************************\
|
|
FILE: _security.h
|
|
|
|
DESCRIPTION:
|
|
This file will contain helper functions and objects that
|
|
help deal with security. This mainly means Zones Security, but
|
|
can include other types.
|
|
|
|
We can't call this file "security.h" because there's already
|
|
a file with that name in sdk\inc.
|
|
\**************************************************************/
|
|
|
|
#ifndef __SECURITY_H
|
|
#define __SECURITY_H
|
|
|
|
#include <urlmon.h>
|
|
|
|
SHSTDAPI ZoneCheckPidl(LPCITEMIDLIST pidl, DWORD dwActionType, DWORD dwFlags, IInternetSecurityMgrSite * pisms);
|
|
|
|
#endif // __SECURITY_H
|