update dev300-m58
[ooovba.git] / sw / inc / docstat.hxx
blobce641a9f239977b66d1c47b97ad304bf580f09a5
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: docstat.hxx,v $
10 * $Revision: 1.4 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef _DOCSTAT_HXX
31 #define _DOCSTAT_HXX
33 #include <tools/solar.h>
34 #include "swdllapi.h"
36 ///////////////////////////////////////////////////////////////////////////
37 // PRODUCT: struct SwInternStat ist nur fuer CORE Interne Statistics und
38 // hat nichts in einer ProductVersion zu suchen.
39 ///////////////////////////////////////////////////////////////////////////
41 struct SwInternStat;
43 struct SW_DLLPUBLIC SwDocStat
45 USHORT nTbl;
46 USHORT nGrf;
47 USHORT nOLE;
48 ULONG nPage;
49 ULONG nPara;
50 ULONG nWord;
51 ULONG nChar;
52 BOOL bModified;
53 SwInternStat* pInternStat;
54 SwDocStat();
55 void Reset();
58 #endif