Example #1
0
 public override void GetScreenRotation(ISharedDataSerializer.OnGetScreenRotation onFinishDelegate)
 {
     ISharedDataSerializer.LastErrno = DataSerializerErrorCode.Success;
     this.Storage.GetScreenRotation(delegate(Byte screenRotation)
     {
         onFinishDelegate(ISharedDataSerializer.LastErrno, screenRotation);
     });
 }
Example #2
0
 public abstract void GetScreenRotation(ISharedDataSerializer.OnGetScreenRotation onFinishDelegate);