File: initializer.h

package info (click to toggle)
vdr-plugin-markad 4.2.15-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,084 kB
  • sloc: cpp: 22,441; python: 613; makefile: 270; sh: 95
file content (16 lines) | stat: -rw-r--r-- 409 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

/*******************************************************************************
 * If running on WIN32, we have to initialize a few things a main() begin,
 * and finalize at main() end.
 *
 * Have one instance of this class at begin of main().
 ******************************************************************************/

class w32init {
private:

public:
  w32init(void);
  ~w32init();
};