Reputation: 19872
I have seen in many programs such as FreeOTFE that they can emulate a storage card in WinMo. It will be shown in Windows Mobile just as a storage card is inserted and i can interact with it just like a SD Card.
How do i implement that? Any tips/tricks/guides/samples?
I am using WinMo 6 Professional with Dot Net Framework :) I know i have to use C++ with some Native APIs :) But i need to know which ones :(
Thanx a lot in advance :)
Upvotes: 2
Views: 245
Reputation: 25591
You cannot do that by means of simple application level APIs. The example you mention, FreeOTFE, installs a custom storage device driver that is identified by the file system manager in the OS as FILE_ATTRIBUTE_TEMPORARY, which together with the FILE_ATTRIBUTE_DIRECTORY means "storage card" / "removable media".
Upvotes: 2