/rusxmms/librcc

To get this branch, use:
bzr branch http://suren.me/webbzr/rusxmms/librcc

« back to all changes in this revision

Viewing changes to src/internal.h

  • Committer: Suren A. Chilingaryan
  • Date: 2005-07-13 16:49:47 UTC
  • Revision ID: Arch-1:ds@dside.dyndns.org--darksoft-2004%librcc--main--0.1--patch-12
Engine Plugins

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#define _RCC_INTERNAL_H
3
3
 
4
4
#include <iconv.h>
 
5
 
 
6
#ifndef LIBRCC_DATA_DIR
 
7
# define LIBRCC_DATA_DIR "/usr/lib/rcc"
 
8
#endif /* LIBRCC_DATA_DIR */
 
9
 
5
10
#include "librcc.h"
6
11
#include "recode.h"
7
12
#include "engine.h"
11
16
 
12
17
#define STRNLEN(str,n) (n?strnlen(str,n):strlen(str))
13
18
 
 
19
#define RCC_MAX_PLUGINS 32
14
20
#define RCC_MAX_STRING_CHARS 1024
15
21
#define RCC_MAX_PREFIX_CHARS 32
16
22