Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions mythtv/libs/libmythfreemheg/freemheg.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,16 @@ class MHContext;
class MHEG;
class MHStream;

#ifdef MTV_API
# define MHEG_PUBLIC Q_DECL_IMPORT
#else
# define MHEG_PUBLIC Q_DECL_EXPORT
#endif

// Called to create a new instance of the module.
extern Q_DECL_EXPORT MHEG *MHCreateEngine(MHContext *context);
extern MHEG_PUBLIC MHEG *MHCreateEngine(MHContext *context);
// Set the logging stream and options.
extern Q_DECL_EXPORT void MHSetLogging(FILE *logStream, unsigned int logLevel);
extern MHEG_PUBLIC void MHSetLogging(FILE *logStream, unsigned int logLevel);

// This abstract class is implemented by the MHEG Engine.
class MHEG
Expand Down
Loading