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
|
/* -*-c-*- */
/* Copyright (C) 2003 Marcus Lundblad */
/*
* FCombineChars.h
*
* Interface to character combining
*/
#ifndef FVWMLIB_COMBINECHARS_H
#define FVWMLIB_COMBINECHARS_H
#include "config.h"
#include "fvwm_x11.h"
typedef struct
{
int position; /* position in the string */
XChar2b c; /* UCS-2 character */
} superimpose_char_t;
int CombineChars(
unsigned char *str_visual, int len, superimpose_char_t **comb_chars,
int **l_to_v);
#endif /* FVWMLIB_COMBINECHARS_H */
|