CollectedFiles.cls (cdf0e10c) CollectedFiles.cls (d4a3fa4b)
1VERSION 1.0 CLASS
2BEGIN
3 MultiUse = -1 'True
4 Persistable = 0 'NotPersistable
5 DataBindingBehavior = 0 'vbNone
6 DataSourceBehavior = 0 'vbNone
7 MTSTransactionMode = 0 'NotAnMTSObject
8END
9Attribute VB_Name = "CollectedFiles"
10Attribute VB_GlobalNameSpace = False
11Attribute VB_Creatable = True
12Attribute VB_PredeclaredId = False
13Attribute VB_Exposed = False
1VERSION 1.0 CLASS
2BEGIN
3 MultiUse = -1 'True
4 Persistable = 0 'NotPersistable
5 DataBindingBehavior = 0 'vbNone
6 DataSourceBehavior = 0 'vbNone
7 MTSTransactionMode = 0 'NotAnMTSObject
8END
9Attribute VB_Name = "CollectedFiles"
10Attribute VB_GlobalNameSpace = False
11Attribute VB_Creatable = True
12Attribute VB_PredeclaredId = False
13Attribute VB_Exposed = False
14'/*************************************************************************
15' *
16' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
17'
18' Copyright 2000, 2010 Oracle and/or its affiliates.
14'*************************************************************************
19'
15'
20' OpenOffice.org - a multi-platform office productivity suite
16' Licensed to the Apache Software Foundation (ASF) under one
17' or more contributor license agreements. See the NOTICE file
18' distributed with this work for additional information
19' regarding copyright ownership. The ASF licenses this file
20' to you under the Apache License, Version 2.0 (the
21' "License"); you may not use this file except in compliance
22' with the License. You may obtain a copy of the License at
23'
24' http://www.apache.org/licenses/LICENSE-2.0
25'
26' Unless required by applicable law or agreed to in writing,
27' software distributed under the License is distributed on an
28' "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
29' KIND, either express or implied. See the License for the
30' specific language governing permissions and limitations
31' under the License.
21'
32'
22' This file is part of OpenOffice.org.
23'
24' OpenOffice.org is free software: you can redistribute it and/or modify
25' it under the terms of the GNU Lesser General Public License version 3
26' only, as published by the Free Software Foundation.
27'
28' OpenOffice.org is distributed in the hope that it will be useful,
29' but WITHOUT ANY WARRANTY; without even the implied warranty of
30' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31' GNU Lesser General Public License version 3 for more details
32' (a copy is included in the LICENSE file that accompanied this code).
33'
34' You should have received a copy of the GNU Lesser General Public License
35' version 3 along with OpenOffice.org. If not, see
36' <http://www.openoffice.org/license.html>
37' for a copy of the LGPLv3 License.
38'
39' ************************************************************************/
33'*************************************************************************
40Option Explicit
41
42Private Const vbDot = 46
43Private Const MAX_PATH = 260
44Private Const INVALID_HANDLE_VALUE = -1
45Private Const vbBackslash = "\"
46Private Const ALL_FILES = "*.*"
47

--- 483 unchanged lines hidden ---
34Option Explicit
35
36Private Const vbDot = 46
37Private Const MAX_PATH = 260
38Private Const INVALID_HANDLE_VALUE = -1
39Private Const vbBackslash = "\"
40Private Const ALL_FILES = "*.*"
41

--- 483 unchanged lines hidden ---