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