24 lines
422 B
C
24 lines
422 B
C
|
/*
|
||
|
* Copyright 2007-2008, Haiku, Inc.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*
|
||
|
* Authors:
|
||
|
* Stefano Ceccherini <stefano.ceccherini@gmail.com>
|
||
|
*/
|
||
|
#ifndef _INTERFACE_PRIVATE_H
|
||
|
#define _INTERFACE_PRIVATE_H
|
||
|
|
||
|
|
||
|
#include <SupportDefs.h>
|
||
|
|
||
|
|
||
|
namespace BPrivate {
|
||
|
|
||
|
bool get_mode_parameter(uint32 mode, int32& width, int32& height,
|
||
|
uint32& colorSpace);
|
||
|
|
||
|
} // namespace BPrivate
|
||
|
|
||
|
|
||
|
#endif // _INTERFACE_PRIVATE_H
|