Leaked source code of windows server 2003
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.

24 lines
464 B

  1. #ifndef _POLICY_MANAGER_H_
  2. #define _POLICY_MANAGER_H_
  3. #include "p3pglobal.h"
  4. #include "policyref.h"
  5. struct P3PContext {
  6. /* Original URL of the file being parsed */
  7. P3PCURL pszOriginalLoc;
  8. /* Document which referred to this P3P file */
  9. P3PCURL pszReferrer;
  10. /* Expiration time implied by HTTP headers */
  11. FILETIME ftExpires;
  12. };
  13. P3PPolicyRef *interpretPolicyRef(char *pszFileName, P3PContext *pContext);
  14. #endif