16 Jun 2008

RAPI OpenNetCF Bug

Si vous utilisez les wrappers OPENNetCF pour RAPI, quelques fois vous obtiendrez une erreur fatale lors du transfert de fichiers, pour corriger ce problème, il suffit d'augmenter la taille du buffer data de la structure FileInformation.
If you use OPENNetCF RAPI wrapper, sometimes you will a fatal excecution exception error when tranfering files. Change the data buffer size of the structure FileInformation.

public class FileInformation //WIN32_FIND_DATA {

private byte[] data = new byte[512];


to

public class FileInformation //WIN32_FIND_DATA {

private byte[] data = new byte[560];

No comments: