~ubuntu-branches/ubuntu/jaunty/moon/jaunty

« back to all changes in this revision

Viewing changes to src/runtime.h

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2009-03-06 10:09:49 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090306100949-pgxjxjqltaxi12rz
Tags: 1.0.1-0ubuntu1
New upstream release (LP: #338665)

Show diffs side-by-side

added added

removed removed

Lines of Context:
195
195
        Downloader *CreateDownloader ();
196
196
        static Downloader *CreateDownloader (UIElement *element);
197
197
 
 
198
        bool GetRelaxedMediaMode (void) { return relaxed_media_mode; }
 
199
        void SetRelaxedMediaMode (bool value) { relaxed_media_mode = value; }
 
200
 
198
201
        void SetFPSReportFunc (MoonlightFPSReportFunc report, void *user_data);
199
202
        void SetCacheReportFunc (MoonlightCacheReportFunc report, void *user_data);
200
203
        void SetExposeHandoffFunc (MoonlightExposeHandoffFunc func, void *user_data);
315
318
        int frames;
316
319
        
317
320
        GdkEvent *mouse_event;
 
321
 
 
322
        // Relaxed mode enables compatibility quirks for handling
 
323
        // things like broken ASX playlists (Moonshine, abock)
 
324
        bool relaxed_media_mode;
318
325
        
319
326
        // Variables for reporting FPS
320
327
        MoonlightFPSReportFunc fps_report;