void LandscapeMode();

 

Sets the application to landscape mode.  In this mode the screen dimensions are 480 pixels wide by 320 pixels high (for iPhone / iPod touch devices) or 1024 pixels wide by 768 pixels high (for iPad devices).  Application X and Y values are handled accordingly.

 

Availability

 

Available in DragonFireSDK 1.0 and later.

 

Example

 

#include "DragonFireSDK.h"

 

void AppMain()

{

  LandscapeMode();

}

 

void AppExit()

{

 

}

 

void OnTimer()

{

 

}