mirror of
https://review.haiku-os.org/haiku
synced 2025-01-22 06:16:03 +01:00
21 lines
407 B
C
21 lines
407 B
C
|
/*
|
||
|
* Copyright 2007, Haiku, Inc.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*
|
||
|
* Authors:
|
||
|
* Stefano Ceccherini <stefano.ceccherini@gmail.com>
|
||
|
*/
|
||
|
|
||
|
/** Various private functions and variables for the Interface Kit */
|
||
|
|
||
|
|
||
|
#ifndef __INTERFACE_MISC_H
|
||
|
#define __INTERFACE_MISC_H
|
||
|
|
||
|
#include <SupportDefs.h>
|
||
|
|
||
|
bool get_mode_parameter(uint32 mode, int32& width, int32& height, uint32& colorSpace);
|
||
|
|
||
|
#endif
|
||
|
|