kodi
xbmc
cores
VideoPlayer
DVDSubtitles
DVDSubtitleTagMicroDVD.h
1
/*
2
* Copyright (C) 2005-2018 Team Kodi
3
* This file is part of Kodi - https://kodi.tv
4
*
5
* SPDX-License-Identifier: GPL-2.0-or-later
6
* See LICENSES/README.md for more information.
7
*/
8
9
#pragma once
10
11
#include <stdio.h>
12
#include <string.h>
13
#include <string>
14
15
#define FLAG_BOLD 0
16
#define FLAG_ITALIC 1
17
#define FLAG_UNDERLINE 2
18
#define FLAG_STRIKETHROUGH 3
19
#define FLAG_COLOR 4
20
21
#define TAG_ONE_LINE 1
22
#define TAG_ALL_LINE 2
23
24
25
class
CDVDSubtitleTagMicroDVD
26
{
27
public
:
28
CDVDSubtitleTagMicroDVD
() { memset(&m_flag, 0,
sizeof
(m_flag)); }
29
void
ConvertLine(std::string& strUTF8);
30
31
private
:
32
int
m_flag[5];
33
};
CDVDSubtitleTagMicroDVD
Definition:
DVDSubtitleTagMicroDVD.h:25
Generated by
1.8.13