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.
|
|
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1996.
//
// File: NNTPProp.hxx
//
// Contents: Definitions of NNTP-specific properties
//
// History: 29-Aug-96 KyleP Created
//
//----------------------------------------------------------------------------
#pragma once
#define NNTPGuid { 0xAA568EEC, 0xE0E5, 0x11CF, 0x8F, 0xDA, 0x00, 0xAA, 0x00, 0xA1, 0x4F, 0x93 }
GUID const guidNNTP = NNTPGuid;
PROPID const propidNewsGroup = 2; PROPID const propidNewsGroups = 3; PROPID const propidNewsReferences = 4; PROPID const propidNewsSubject = 5; PROPID const propidNewsFrom = 6; PROPID const propidNewsMsgid = 7;
PROPID const propidNewsDate = 12;
PROPID const propidNewsReceivedDate = 53;
PROPID const propidNewsArticleid = 60;
//
// These properties have strings for propids
//
#define propRfc822MsgCc L"cc"
#define propRfc822MsgBcc L"bcc"
#define propRfc822MsgTo L"to"
|