Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3584 sourcerer 1
/*
2
 * This file is part of LibCSS.
3
 * Licensed under the MIT License,
4
 *                http://www.opensource.org/licenses/mit-license.php
5
 * Copyright 2011 Things Made Out Of Other Things Ltd.
6
 * Written by James Montgomerie 
7
 */
8
 
9
#ifndef css_parse_font_face_h_
10
#define css_parse_font_face_h_
11
 
12
#include 
13
 
14
#include "stylesheet.h"
15
#include "lex/lex.h"
16
#include "parse/language.h"
17
 
18
css_error css__parse_font_descriptor(css_language *c,
19
		const css_token *descriptor, const parserutils_vector *vector,
20
		int *ctx, struct css_rule_font_face *rule);
21
 
22
#endif