A dummy file filter gives the appearance that files are being converted without actually implementing a file filter or performing a filter conversion. Instead, the file is passed without any conversion.
You may want to implement a dummy file filter for a file that has a unique file type or one that has not been registered already in the desktop registry. A dummy file filter can also be useful for a file that does not need any conversion when it is transferred between Windows Explorer on the desktop computer and Windows CE Explorer for the Windows CE–based device.
Usually, if a file with a deregistered file type is copied to the device, the device displays the warning "No Converter Selected." This warns the user that the file will be transferred without conversion. In this situation, you could implement a dummy file filter to avoid alarming the user with the file conversion warning.
Note The "No Converter Selected" warning is displayed only if the File Conversions Properties for the device is set to enable file conversion. If the Enable File Conversion check box is cleared, the "No Converter Selected" warning is not displayed.
This subkey should name the file extension for the type of files that should be converted with the NULL file conversion. For example, if you are converting files with extension .abc, then you must add an .abc subkey.
This string value identifies the conversion for files with .abc extensions that are imported from the desktop computer to the device.
This string value identifies the conversion for files with .abc extensions that are exported from the device to the desktop computer.
The following registry editor (.reg) file shows how to register the example .abc dummy file filter.
REGEDIT4
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows CE Services\Filters\.abc]
"DefaultImport"="Binary Copy"
"DefaultExport"="Binary Copy"
In this example, when a file with an .abc extension is copied between the desktop computer and the device, it will seem as though a conversion process is taking place because you do not receive the "No Converter Selected" warning from Windows CE Services. However, no filter actually is being used, because an InstalledFilters subkey has not been added under the .abc key.