projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Release 950319
[wine]
/
include
/
region.h
1
/*
2
* GDI region definitions
3
*
4
* Copyright 1994 Alexandre Julliard
5
*/
6
7
#ifndef __WINE_REGION_H
8
#define __WINE_REGION_H
9
10
#include "gdi.h"
11
12
/* GDI logical region object */
13
typedef struct
14
{
15
GDIOBJHDR header;
16
Region xrgn;
17
} RGNOBJ;
18
19
20
extern BOOL REGION_DeleteObject( HRGN hrgn, RGNOBJ * obj );
21
22
#endif /* __WINE_REGION_H */