Ejemplo n.º 1
0
        public virtual int SetIndexing(
            WICJpegIndexingOptions options,
            uint horizontalIntervalSize
            )
        {
            var fp = GetFunctionPointer(4);

            if (m_SetIndexingFunc == null)
            {
                m_SetIndexingFunc = (SetIndexingFunc)Marshal.GetDelegateForFunctionPointer(fp, typeof(SetIndexingFunc));
            }

            return(m_SetIndexingFunc(m_ptr, options, horizontalIntervalSize));
        }
 public int SetIndexing(WICJpegIndexingOptions options, [NativeTypeName("UINT")] uint horizontalIntervalSize)
 {
     return(((delegate * unmanaged <IWICJpegFrameDecode *, WICJpegIndexingOptions, uint, int>)(lpVtbl[4]))((IWICJpegFrameDecode *)Unsafe.AsPointer(ref this), options, horizontalIntervalSize));
 }