Bugfix: fix disabling RandR outputs

This commit is contained in:
Michael Stapelberg
2011-02-21 01:43:39 +01:00
parent 35e79c87c8
commit a92b9dca73
5 changed files with 43 additions and 5 deletions

View File

@ -55,5 +55,6 @@
#include "resize.h"
#include "sighandler.h"
#include "move.h"
#include "output.h"
#endif

14
include/output.h Normal file
View File

@ -0,0 +1,14 @@
/*
* vim:ts=4:sw=4:expandtab
*/
#ifndef _OUTPUT_H
#define _OUTPUT_H
/**
* Returns the output container below the given output container.
*
*/
Con *output_get_content(Con *output);
#endif