|
|
|
start date: Tue, 21 Aug 2007 17:56:19 -0000,
posted on: microsoft.public.dotnet.framework.compactframework
back
| Thread Index |
|
1
Krupa
|
|
2
Peter Foot [MVP]
|
|
3
Paul G. Tobey [eMVP] p space tobey no spam AT no instrument no spam DOT com
|
|
4
Krupa
|
FSD - implementation of MountDisk and UnmountDisk
Hi,
I am trying to create my own FSD for a Windows CE 5.0 device. I want
to mainly mount/unmount the storage card programmatically.
The .def file looks like:
LIBRARY MyFSD
DESCRIPTION 'My File System for Windows CE'
[HKEY_LOCAL_MACHINE\System\StorageManager\AutoLoad\MyFSD]
"Dll"="MyFSD.dll"
"Paging"=dword:0
EXPORTS
MyFSD_MountDisk
MyFSD_UnmountDisk
FSD_MountDisk=MyFSD_MountDisk
FSD_UnmountDisk=MyFSD_UnmountDisk
MyFSD_CreateDirectoryW
MyFSD_RemoveDirectoryW...
I added MyFSD.h files contains the following lines of code:
#define FSDAPI MyFSD
#include "fsdmgr.h"
I am not sure how to implement the MyFSD_MountDisk and
MyFSD_UnmountDisk functions. I googled and found a few windows ce base
team blogs that discussed this, but I couldn't gather much from there
(may be because I am new to this). Can someone please guide me?
Thanks,
Krupa
I
Date:Tue, 21 Aug 2007 17:56:19 -0000
Author:
|
Re: FSD - implementation of MountDisk and UnmountDisk
Try posting your query to one of the microsoft.public.windowsce.* groups.
File System Drivers are not a Compact Framework topic.
Peter
--
Peter Foot
Microsoft Device Application Development MVP
www.peterfoot.net | www.inthehand.com
In The Hand Ltd - .NET Solutions for Mobility
"Krupa" wrote in message
news:1187718979.048210.123140@i13g2000prf.googlegroups.com...
> Hi,
>
> I am trying to create my own FSD for a Windows CE 5.0 device. I want
> to mainly mount/unmount the storage card programmatically.
>
> The .def file looks like:
>
> LIBRARY MyFSD
> DESCRIPTION 'My File System for Windows CE'
>
> [HKEY_LOCAL_MACHINE\System\StorageManager\AutoLoad\MyFSD]
> "Dll"="MyFSD.dll"
> "Paging"=dword:0
>
> EXPORTS
> MyFSD_MountDisk
> MyFSD_UnmountDisk
> FSD_MountDisk=MyFSD_MountDisk
> FSD_UnmountDisk=MyFSD_UnmountDisk
> MyFSD_CreateDirectoryW
> MyFSD_RemoveDirectoryW...
>
> I added MyFSD.h files contains the following lines of code:
>
> #define FSDAPI MyFSD
> #include "fsdmgr.h"
>
> I am not sure how to implement the MyFSD_MountDisk and
> MyFSD_UnmountDisk functions. I googled and found a few windows ce base
> team blogs that discussed this, but I couldn't gather much from there
> (may be because I am new to this). Can someone please guide me?
>
> Thanks,
> Krupa
> I
>
Date:Tue, 21 Aug 2007 19:11:57 +0100
Author:
|
Re: FSD - implementation of MountDisk and UnmountDisk
microsoft.public.windowsce.platbuilder is the right place...
Paul T.
"Peter Foot [MVP]" wrote in message
news:0ABCAEC0-F367-49F0-9392-57DC81E897C5@microsoft.com...
> Try posting your query to one of the microsoft.public.windowsce.* groups.
> File System Drivers are not a Compact Framework topic.
>
> Peter
>
> --
> Peter Foot
> Microsoft Device Application Development MVP
> www.peterfoot.net | www.inthehand.com
> In The Hand Ltd - .NET Solutions for Mobility
>
> "Krupa" wrote in message
> news:1187718979.048210.123140@i13g2000prf.googlegroups.com...
>> Hi,
>>
>> I am trying to create my own FSD for a Windows CE 5.0 device. I want
>> to mainly mount/unmount the storage card programmatically.
>>
>> The .def file looks like:
>>
>> LIBRARY MyFSD
>> DESCRIPTION 'My File System for Windows CE'
>>
>> [HKEY_LOCAL_MACHINE\System\StorageManager\AutoLoad\MyFSD]
>> "Dll"="MyFSD.dll"
>> "Paging"=dword:0
>>
>> EXPORTS
>> MyFSD_MountDisk
>> MyFSD_UnmountDisk
>> FSD_MountDisk=MyFSD_MountDisk
>> FSD_UnmountDisk=MyFSD_UnmountDisk
>> MyFSD_CreateDirectoryW
>> MyFSD_RemoveDirectoryW...
>>
>> I added MyFSD.h files contains the following lines of code:
>>
>> #define FSDAPI MyFSD
>> #include "fsdmgr.h"
>>
>> I am not sure how to implement the MyFSD_MountDisk and
>> MyFSD_UnmountDisk functions. I googled and found a few windows ce base
>> team blogs that discussed this, but I couldn't gather much from there
>> (may be because I am new to this). Can someone please guide me?
>>
>> Thanks,
>> Krupa
>> I
>>
>
Date:Tue, 21 Aug 2007 11:24:54 -0700
Author:
|
Re: FSD - implementation of MountDisk and UnmountDisk
Thanks! Will do.
Date:Tue, 21 Aug 2007 19:32:08 -0000
Author:
|
|
|