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.

11 lines
582 B

  1. // history.
  2. typedef struct _zHISTORY_ITEM_INFO {
  3. DWORD dwVersion; //Version of History System
  4. LPSTR lpszSourceUrlName; // embedded pointer to the URL name string.
  5. DWORD HistoryItemType; // cache type bit mask.
  6. FILETIME LastAccessTime; // last accessed time in GMT format
  7. LPSTR lpszTitle; // embedded pointer to the History-Title: info.
  8. LPSTR lpszDependancies; // list of URLs that this page requires to be functional, SPC delimited
  9. DWORD dwReserved; // reserved for future use.
  10. } HISTORY_ITEM_INFO, *LPHISTORY_ITEM_INFO;