File: x_draw_str.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 (25 lines) | stat: -rw-r--r-- 722 bytes parent folder | download | duplicates (3)
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
/*
 *	$Id$
 */

#ifndef  __X_DRAW_STR_H__
#define  __X_DRAW_STR_H__

#include  <ml_char.h>
#include  "x_window.h"
#include  "x_font_manager.h"
#include  "x_color_manager.h"


int x_draw_str( x_window_t *  window , x_font_manager_t *  font_man ,
	x_color_manager_t *  color_man , ml_char_t *  chars , u_int  num_of_chars ,
	int  x , int  y , u_int  height , u_int  ascent ,
	u_int  top_margin , u_int  bottom_margin , int  hide_underline) ;

int x_draw_str_to_eol( x_window_t *  window , x_font_manager_t *  font_man ,
	x_color_manager_t *  color_man , ml_char_t *  chars , u_int  num_of_chars ,
	int  x , int  y , u_int  height , u_int  ascent ,
	u_int  top_margin , u_int  bottom_margin , int  hide_underline) ;


#endif