Esempio n. 1
0
        public static void XTIFFInitialize()
        {
            if (!first_time)
            {
                return;                         // Been there. Done that.
            }
            first_time = false;

            // Grab the inherited method and install
            _ParentExtender = libtiff.TIFFSetTagExtender(XTIFFDefaultDirectory);
        }
Esempio n. 2
0
		public static void XTIFFInitialize()
		{
			if(!first_time) return; // Been there. Done that.
			first_time=false;

			// Grab the inherited method and install
			_ParentExtender=libtiff.TIFFSetTagExtender(XTIFFDefaultDirectory);
		}
Esempio n. 3
0
 public static TIFFExtendProc TIFFSetTagExtender(TIFFExtendProc extender)
 {
     TIFFExtendProc prev=TIFFextender;
     TIFFextender=extender;
     return prev;
 }