| Line |  | 
|---|
| 1 | /* $Id: pen.h,v 1.1 1999-05-24 20:19:17 ktk Exp $ */ | 
|---|
| 2 |  | 
|---|
| 3 | /* | 
|---|
| 4 | * GDI pen definitions | 
|---|
| 5 | * | 
|---|
| 6 | * Copyright 1994 Alexandre Julliard | 
|---|
| 7 | */ | 
|---|
| 8 |  | 
|---|
| 9 | #ifndef __WINE_PEN_H | 
|---|
| 10 | #define __WINE_PEN_H | 
|---|
| 11 |  | 
|---|
| 12 | #include "gdi.h" | 
|---|
| 13 |  | 
|---|
| 14 | /* GDI logical pen object */ | 
|---|
| 15 | typedef struct | 
|---|
| 16 | { | 
|---|
| 17 | GDIOBJHDR   header; | 
|---|
| 18 | LOGPEN    logpen; | 
|---|
| 19 | } PENOBJ; | 
|---|
| 20 |  | 
|---|
| 21 | extern INT16 PEN_GetObject16( PENOBJ * pen, INT16 count, LPSTR buffer ); | 
|---|
| 22 | extern INT PEN_GetObject( PENOBJ * pen, INT count, LPSTR buffer ); | 
|---|
| 23 |  | 
|---|
| 24 | #endif  /* __WINE_PEN_H */ | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.