> Re: RBPlugin129? No UB component... > From: Michael Gerbes <[EMAIL PROTECTED]> > Date: Wed, 25 Oct 2006 10:16:19 +0200 > > I have the same problem and I'm not quite sure, what to do. > > Should I delete all the QT calls ? (Unfortunately I need all of them...) > > Or isolate them with #if target 's, like this ? > #if TargetMachO then > declare function SetMediaTimeScale Lib "QuickTime" (media as > integer, timescale as integer) as integer > #elseif TargetX86 then > declare function SetMediaTimeScale Lib "QuickTime" (media as > integer, timescale as integer) as integer > #endif > > Is QuickTime the correct Lib Name for TargetX86 ? > > I'm trying to compile my project to a UB. Thanks for your answers.
I'm not working with UB yet, but the header file movies.h lists, /* * SetMediaTimeScale() * * Availability: * Mac OS X: in version 10.0 and later in QuickTime.framework * CarbonLib: in CarbonLib 1.0 and later * Non-Carbon CFM: in QuickTimeLib 2.5 and later * Windows: in qtmlClient.lib 3.0 and later */ extern void SetMediaTimeScale( Media theMedia, TimeScale timeScale) AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER; I would add *Soft Declare* and use Lib *QuickTime.framework* and I do not see any reason to use target's between MachO and X86, but that's just a guess on my part. -- Thomas C. _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
