mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 21:04:09 +00:00
ee966c4d2d
and their header files necessary to build GoldenDict on 64-bit Intel Macs. Included program icon into application package. Minor code clarification in keyboardstate.cc
29 lines
575 B
C++
29 lines
575 B
C++
#ifndef _BASEAFF_HXX_
|
|
#define _BASEAFF_HXX_
|
|
|
|
#include "hunvisapi.h"
|
|
|
|
class LIBHUNSPELL_DLL_EXPORTED AffEntry
|
|
{
|
|
protected:
|
|
char * appnd;
|
|
char * strip;
|
|
unsigned char appndl;
|
|
unsigned char stripl;
|
|
char numconds;
|
|
char opts;
|
|
unsigned short aflag;
|
|
union {
|
|
char conds[MAXCONDLEN];
|
|
struct {
|
|
char conds1[MAXCONDLEN_1];
|
|
char * conds2;
|
|
} l;
|
|
} c;
|
|
char * morphcode;
|
|
unsigned short * contclass;
|
|
short contclasslen;
|
|
};
|
|
|
|
#endif
|