30 Dec 2008

Serial port IRDA mode

Pour utiliser un port série en mode IR sous WINCE ou Windows Mobile

  1. Appeler la fonction EscapeCommFunction avec le paramètre dwFunc à SETIR.
  2. Utiliser les fonctions standards de communications série pour transmettre et recevoir des données.
  3. Appeler la fonction EscapeCommFunction avec le paramètre dwFunc à CLRIR pour remettre le port série en mode série classique.


 

To use a serial port in IR mode with WINCE or Windows Mobile

  1. Use the EscapeCommFunction function with the dwFunc parameter set to SETIR.
  2. Use the standard serial communications functions to transmit and receive data.
  3. Call the EscapeCommFunction with the dwFunc parameter set to CLRIR to set the port back to normal serial mode.


 

Audio Update registry

Quand vous faites des modifications en base de registre qui concernent le son, vous avez souvent besoin de reseter le device pour prendre en compte les modifications. Une autre solution est d'appeler la fonction non documentés suivante : AudioUpdateFromRegistry.

Pour l'importer en C# :

[DllImport("coredll")]

public
static
extern
void AudioUpdateFromRegistry();


 


 

When you make modifications concerning sounds in registry, sometimes you need to reboot your device to consider the modifications. Another solution is to call the undocumented function AudioUpdateFromRegistry.

Here is the C# import:

[DllImport("coredll")]

public
static
extern
void AudioUpdateFromRegistry();