~darkxst/ubuntu/raring/xorg-server/lp1073724

« back to all changes in this revision

Viewing changes to randr/rroutput.c

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2010-06-07 14:50:49 UTC
  • mfrom: (0.9.4 upstream)
  • mto: This revision was merged to the branch mainline in revision 187.
  • Revision ID: james.westby@ubuntu.com-20100607145049-eys326hqtq5mjqxt
Tags: upstream-1.8.1.901
ImportĀ upstreamĀ versionĀ 1.8.1.901

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 */
23
23
 
24
24
#include "randrstr.h"
25
 
#include "registry.h"
26
25
 
27
26
RESTYPE RROutputType;
28
27
 
422
421
Bool
423
422
RROutputInit (void)
424
423
{
425
 
    RROutputType = CreateNewResourceType (RROutputDestroyResource);
 
424
    RROutputType = CreateNewResourceType (RROutputDestroyResource, "OUTPUT");
426
425
    if (!RROutputType)
427
426
        return FALSE;
428
 
    RegisterResourceName (RROutputType, "OUTPUT");
429
427
    return TRUE;
430
428
}
431
429