File: x_gdiobj_pool.h

package info (click to toggle)
mlterm 3.1.2-1.3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 23,168 kB
  • sloc: ansic: 102,795; sh: 9,676; java: 2,018; perl: 1,601; makefile: 1,595; cpp: 771; sed: 16
file content (27 lines) | stat: -rw-r--r-- 359 bytes parent folder | download
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
/*
 *	$Id$
 */

#ifndef  __X_GDIOBJ_POOL_H__
#define  __X_GDIOBJ_POOL_H__


#include  <kiklib/kik_types.h>

#include  "x_win32.h"


int  x_gdiobj_pool_init(void) ;

int  x_gdiobj_pool_final(void) ;

HPEN  x_acquire_pen( u_long  rgb) ;

int  x_release_pen( HPEN  pen) ;

HBRUSH  x_acquire_brush( u_long  rgb) ;

int  x_release_brush( HBRUSH  brush) ;


#endif