CrystalMpq.DataFormats.Surface.LockInternal C# (CSharp) 메소드

LockInternal() 보호된 추상적인 메소드

Locks the surface for direct read/write access.
protected abstract LockInternal ( int &stride ) : IntPtr
stride int The stride.
리턴 System.IntPtr
        protected abstract IntPtr LockInternal(out int stride);

Usage Example

예제 #1
0
파일: Surface.cs 프로젝트: Bootz/crystalmpq
 protected sealed override IntPtr LockInternal(out int stride)
 {
     return(@this.LockInternal(out stride));
 }