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, 1992 - 1996.
//
// File: rexpdf.hxx
//
// Contents: Root exposed docfile header
//
// Classes: CRootExposedDocFile
//
//---------------------------------------------------------------
#ifndef __REXPDF_HXX__
#define __REXPDF_HXX__
#include "../expdf.hxx"
//+--------------------------------------------------------------
//
// Class: CRootExposedDocFile (rpdf)
//
// Purpose: Root form of the public docfile
//
// Interface: See below
//
//---------------------------------------------------------------
class CRootExposedDocFile : public CExposedDocFile { public: CRootExposedDocFile(CDFBasis *pdfb); SCODE InitRoot(ILockBytes *plstBase, DWORD const dwStartFlags, DFLAGS const df, SNBW snbExclude);
virtual ~CRootExposedDocFile(void);
STDMETHOD(Stat) (STATSTGW *pstatstg, DWORD grfStatFlag); private: SCODE Init(ILockBytes *plstBase, SNBW snbExclude, DWORD const dwStartFlags); };
#endif // #ifndef __REXPDF_HXX__
|