16 lines
346 B
C
16 lines
346 B
C
|
/*
|
||
|
* Copyright 2017, Haiku.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*
|
||
|
* Authors:
|
||
|
* Brian Hill <supernova@warpmail.net>
|
||
|
*/
|
||
|
#ifndef _SCREEN_DEFS_H
|
||
|
#define _SCREEN_DEFS_H
|
||
|
|
||
|
|
||
|
// Message sent to Screen from Backgrounds when updating the background color
|
||
|
static const uint32 UPDATE_DESKTOP_COLOR_MSG = 'udsc';
|
||
|
|
||
|
#endif // _SCREEN_DEFS_H
|