Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/apps/mplayerc/ISDb.h')
-rw-r--r--src/apps/mplayerc/ISDb.h54
1 files changed, 27 insertions, 27 deletions
diff --git a/src/apps/mplayerc/ISDb.h b/src/apps/mplayerc/ISDb.h
index bf55a0c8e..2e6b5d146 100644
--- a/src/apps/mplayerc/ISDb.h
+++ b/src/apps/mplayerc/ISDb.h
@@ -32,41 +32,41 @@
struct isdb_subtitle
{
- int id, discs, disc_no;
- CStringA name, format, language, iso639_2, nick, email;
- struct isdb_subtitle()
- {
- reset();
- }
- void reset()
- {
- id = discs = disc_no = 0;
- format = language = nick = email = "";
- }
+ int id, discs, disc_no;
+ CStringA name, format, language, iso639_2, nick, email;
+ struct isdb_subtitle()
+ {
+ reset();
+ }
+ void reset()
+ {
+ id = discs = disc_no = 0;
+ format = language = nick = email = "";
+ }
};
struct isdb_movie
{
- CAtlList<CStringA> titles;
- CAtlList<isdb_subtitle> subs;
- void reset()
- {
- titles.RemoveAll();
- subs.RemoveAll();
- }
- void operator = (const struct isdb_movie& m)
- {
- titles.RemoveAll();
- titles.AddTailList(&m.titles);
- subs.RemoveAll();
- subs.AddTailList(&m.subs);
- }
+ CAtlList<CStringA> titles;
+ CAtlList<isdb_subtitle> subs;
+ void reset()
+ {
+ titles.RemoveAll();
+ subs.RemoveAll();
+ }
+ void operator = (const struct isdb_movie& m)
+ {
+ titles.RemoveAll();
+ titles.AddTailList(&m.titles);
+ subs.RemoveAll();
+ subs.AddTailList(&m.subs);
+ }
};
struct filehash
{
- CString name;
- UINT64 size, hash;
+ CString name;
+ UINT64 size, hash;
};
extern bool hash(LPCTSTR fn, filehash& fh);