Skip to content

Commit

Permalink
Export two function names and a class name.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxdude42 committed Jan 21, 2023
1 parent f313474 commit 0af09d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mythtv/libs/libmythfreemheg/freemheg.h
Expand Up @@ -46,9 +46,9 @@ class MHEG;
class MHStream;

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

// This abstract class is implemented by the MHEG Engine.
class MHEG
Expand Down
2 changes: 1 addition & 1 deletion mythtv/libs/libmythfreesurround/freesurround.h
Expand Up @@ -23,7 +23,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

static constexpr uint16_t SURROUND_BUFSIZE { 8192 };

class FreeSurround
class Q_DECL_EXPORT FreeSurround
{
public:
enum SurroundMode
Expand Down

0 comments on commit 0af09d8

Please sign in to comment.