MiniDisplay.h
changeset 16 42ba42be810d
parent 11 2d749a2bea34
child 17 591e9f922c63
     1.1 --- a/MiniDisplay.h	Sun Aug 31 17:42:10 2014 +0200
     1.2 +++ b/MiniDisplay.h	Sun Aug 31 18:33:31 2014 +0200
     1.3 @@ -185,6 +185,24 @@
     1.4  */
     1.5  extern "C" MDAPI bool MiniDisplayPowerSupplyStatus(MiniDisplayDevice aDevice);
     1.6  
     1.7 +/**
     1.8 +Turn device Power ON.
     1.9 +@param [IN] The device to apply this command to.
    1.10 +*/
    1.11 +extern "C" MDAPI void MiniDisplayPowerOn(MiniDisplayDevice aDevice);
    1.12 +
    1.13 +/**
    1.14 +Turn device Power OFF.
    1.15 +@param [IN] The device to apply this command to.
    1.16 +*/
    1.17 +extern "C" MDAPI void MiniDisplayPowerOff(MiniDisplayDevice aDevice);
    1.18 +
    1.19 +/**
    1.20 +Specifies whether or not this display supports power ON/OFF functions.
    1.21 +@param [IN] The device to apply this command to.
    1.22 +@return True if one can turn display power on and off, false otherwise.
    1.23 +*/
    1.24 +extern "C" MDAPI bool MiniDisplaySupportPowerOnOff(MiniDisplayDevice aDevice);
    1.25  
    1.26  
    1.27  #endif