Windows: Build afs_shl_ext.dll with talocaleU.lib
[openafs.git] / src / WINNT / client_exp / submount_info.cpp
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 #include "stdafx.h"
11 #include <winsock2.h>
12 #include <ws2tcpip.h>
13
14 extern "C" {
15 #include <afs/param.h>
16 #include <afs/stds.h>
17 }
18
19 #include "submount_info.h"
20
21
22 CSubmountInfo::CSubmountInfo()
23 {
24         m_Status = SIS_NULL;
25 }
26
27 CSubmountInfo::CSubmountInfo(const CString& strShareName, const CString& strPathName, SUBMT_INFO_STATUS status)
28 {
29         m_Status = status;
30         
31         SetShareName(strShareName);
32         SetPathName(strPathName);
33 }
34
35 CSubmountInfo::CSubmountInfo(const CSubmountInfo& info)
36 {
37         SetStatus(info.GetStatus());
38         SetShareName(info.GetShareName());
39         SetPathName(info.GetPathName());
40 }       
41
42 CSubmountInfo::~CSubmountInfo()
43 {
44 }
45