File: gdk_font_externals.e

package info (click to toggle)
egtk 0.3.5.cvs20020302-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,900 kB
  • ctags: 5,118
  • sloc: ansic: 2,212; makefile: 247; sh: 113
file content (26 lines) | stat: -rw-r--r-- 484 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
26
----------------------------------------------------------------------
-- Copyright 2000 Richie Bielak and others
-- Licensed under Eiffel Forum Freeware License, version 1;
-- (see forum.txt)
--
indexing
	
	description: "Field access for GDK_COLOR"

class GDK_FONT_EXTERNALS

feature {NONE}

	gdk_font_load (description: POINTER): POINTER is
		external "C"
		end

	gdk_font_ref (f: POINTER): POINTER is
		external "C"
		end

	gdk_font_unref (f: POINTER) is
		external "C"
		end

end