20 lines
538 B
C
20 lines
538 B
C
/*
|
|
* This confidential and proprietary software may be used only as
|
|
* authorised by a licensing agreement from ARM Limited
|
|
* (C) COPYRIGHT 2014-2016 ARM Limited
|
|
* ALL RIGHTS RESERVED
|
|
* The entire notice above must be reproduced on all authorised
|
|
* copies and copies may only be made to the extent permitted
|
|
* by a licensing agreement from ARM Limited.
|
|
*/
|
|
#ifndef _FBDEV_WINDOW_H_
|
|
#define _FBDEV_WINDOW_H_
|
|
|
|
typedef struct fbdev_window
|
|
{
|
|
unsigned short width;
|
|
unsigned short height;
|
|
} fbdev_window;
|
|
|
|
#endif /* _FBDEV_WINDOW_H_ */
|