blob: 26a4a5eb9f879e8650a5e714bab2ae7943c18be0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/**
* @file outline.h
* @author Joe Wingbermuehle
* @date 2004-2006
*
* @brief Outlines for moving and resizing client windows.
*
*/
#ifndef OUTLINE_H
#define OUTLINE_H
/*@{*/
void InitializeOutline();
void StartupOutline();
void ShutdownOutline();
void DestroyOutline();
/*@}*/
/** Draw an outline.
* @param x The x-coordinate.
* @param y The y-coordinate.
* @param width The width of the outline.
* @param height The height of the outline.
*/
void DrawOutline(int x, int y, int width, int height);
/** Clear an outline. */
void ClearOutline();
#endif
|