~ubuntu-branches/ubuntu/warty/openafs/warty

« back to all changes in this revision

Viewing changes to src/WINNT/client_exp/volume_inf.h

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hartman
  • Date: 2004-01-10 16:37:33 UTC
  • Revision ID: james.westby@ubuntu.com-20040110163733-jvr0n1uahshlb1uu
Tags: upstream-1.2.11
ImportĀ upstreamĀ versionĀ 1.2.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2000, International Business Machines Corporation and others.
 
3
 * All Rights Reserved.
 
4
 * 
 
5
 * This software has been released under the terms of the IBM Public
 
6
 * License.  For details, see the LICENSE file in the top-level source
 
7
 * directory or online at http://www.openafs.org/dl/license10.html
 
8
 */
 
9
 
 
10
#ifndef _VOLUME_INF_H_
 
11
#define _VOLUME_INF_H_
 
12
 
 
13
class CVolInfo
 
14
{
 
15
public:
 
16
        CString m_strFilePath;
 
17
        CString m_strFileName;
 
18
        CString m_strName;
 
19
        LONG m_nID;
 
20
        LONG m_nQuota;
 
21
        LONG m_nNewQuota;
 
22
        LONG m_nUsed;
 
23
        LONG m_nPartSize;
 
24
        LONG m_nPartFree;
 
25
        int m_nDup;
 
26
        CString m_strErrorMsg;
 
27
};
 
28
 
 
29
 
 
30
#endif // _VOLUME_INF_H_
 
31