mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
de75440fbe
--HG-- extra : rebase_source : abe4519a3eeacdc2f89343b26c7b961f62dfb435
23 lines
528 B
C++
23 lines
528 B
C++
#ifndef nsHtml5NamedCharacters_h__
|
|
#define nsHtml5NamedCharacters_h__
|
|
|
|
#include "prtypes.h"
|
|
#include "jArray.h"
|
|
#include "nscore.h"
|
|
#include "nsDebug.h"
|
|
#include "prlog.h"
|
|
#include "nsMemory.h"
|
|
|
|
class nsHtml5NamedCharacters
|
|
{
|
|
public:
|
|
static jArray<jArray<PRInt8,PRInt32>,PRInt32> NAMES;
|
|
static const PRUnichar VALUES[][2];
|
|
static PRUnichar** WINDOWS_1252;
|
|
static const PRInt32* const HILO_ACCEL[];
|
|
static void initializeStatics();
|
|
static void releaseStatics();
|
|
};
|
|
|
|
#endif // nsHtml5NamedCharacters_h__
|