First public contribution.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // f32test\fsstress\t_remdir.cpp
25 #define WIN32_LEAN_AND_MEAN
26 #pragma warning( disable : 4201 ) // nonstandard extension used : nameless struct/union
28 #pragma warning( default : 4201 ) // nonstandard extension used : nameless struct/union
41 //////////////////////////////////////////////////////////////////////////
43 //////////////////////////////////////////////////////////////////////////
47 CRemoteDirCB::CRemoteDirCB(/*CSessionFs* aSession*/)
51 : CDirCB(/*aSession*/),iEntry()//JCS??????????
55 // __DECLARE_NAME(_S("CRemoteDirCB"));
58 CRemoteDirCB::~CRemoteDirCB()
64 // if (iWinHandle!=NULL && FindClose(iWinHandle)==FALSE)
68 TBool CRemoteDirCB::MatchUid()
74 if (iUidType[0]!=TUid::Null() || iUidType[1]!=TUid::Null() || iUidType[2]!=TUid::Null())
80 void CRemoteDirCB::ReadL(TEntry& /*anEntry*/)
82 // Read the next entry from the directory
83 // Dummy implementation of a pure virtual function
86 User::After(200000); // Wait 0.2 seconds
90 //////////////////////////////////////////////////////////////////////////
92 //////////////////////////////////////////////////////////////////////////
96 CRemoteFormatCB::CRemoteFormatCB(/*CSessionFs* aSession*/)//???JCS
100 :CFormatCB(/*aSession*/)
103 __DECLARE_NAME(_S("CRemoteFormatCB"));
106 CRemoteFormatCB::~CRemoteFormatCB()
112 void CRemoteFormatCB::DoFormatStepL()
119 User::Leave(KErrNotSupported);