Version Differences for H15

(FAQ)
Line 8:
  '''How do I soft-reset the device programmatically from my .NET application?'''    '''How do I soft-reset the device programmatically from my .NET application?''' 
  :In C#:    :In C#: 
- : [DllImport("coredll.dll", SetLastError = true)]   + :<code>[DllImport("coredll.dll", SetLastError = true)]  
  static extern int SetSystemPowerState(string psState, int StateFlags, int Options);    static extern int SetSystemPowerState(string psState, int StateFlags, int Options); 
       
Line 14:
- const int POWER_STATE_RESET = 0x00800000;   + const int POWER_STATE_RESET = 0x00800000;</code>  
       
  :Then call    :Then call 
- : SetSystemPowerState(null, POWER_STATE_RESET, POWER_FORCE);   + :<code>SetSystemPowerState(null, POWER_STATE_RESET, POWER_FORCE);</code>