summaryrefslogtreecommitdiffstats
path: root/mpeglib/example/yaf
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-05 17:48:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-06 11:01:12 +0900
commit079c37d101ef339b975361f9ab86053f609f8e3e (patch)
tree29e6fdbfc08a85a76054c5f5c0362bd81ceee600 /mpeglib/example/yaf
parentfe5957a3c2bfde3d06408f20b0d75fb56e114df3 (diff)
downloadtdemultimedia-079c37d101ef339b975361f9ab86053f609f8e3e.tar.gz
tdemultimedia-079c37d101ef339b975361f9ab86053f609f8e3e.zip
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit cdd8febb68a55d7651ba5f18cb54bbd2e96e448a)
Diffstat (limited to 'mpeglib/example/yaf')
-rw-r--r--mpeglib/example/yaf/yafcore/buffer.h2
-rw-r--r--mpeglib/example/yaf/yafcore/commandTable.h2
-rw-r--r--mpeglib/example/yaf/yafcore/inputDecoder.h2
-rw-r--r--mpeglib/example/yaf/yafcore/inputInterface.h2
-rw-r--r--mpeglib/example/yaf/yafcore/outputInterface.h2
-rw-r--r--mpeglib/example/yaf/yafcore/yaf_control.h2
-rw-r--r--mpeglib/example/yaf/yafxplayer/inputDecoderYAF.h2
-rw-r--r--mpeglib/example/yaf/yafxplayer/yafOutputStream.h2
8 files changed, 8 insertions, 8 deletions
diff --git a/mpeglib/example/yaf/yafcore/buffer.h b/mpeglib/example/yaf/yafcore/buffer.h
index 7c1a3d5c..93f4f3d8 100644
--- a/mpeglib/example/yaf/yafcore/buffer.h
+++ b/mpeglib/example/yaf/yafcore/buffer.h
@@ -24,7 +24,7 @@ extern "C" {
}
#include <kdemacros.h>
-class KDE_EXPORT Buffer {
+class TDE_EXPORT Buffer {
char* msg;
int nSize;
diff --git a/mpeglib/example/yaf/yafcore/commandTable.h b/mpeglib/example/yaf/yafcore/commandTable.h
index 75dd4325..77d51906 100644
--- a/mpeglib/example/yaf/yafcore/commandTable.h
+++ b/mpeglib/example/yaf/yafcore/commandTable.h
@@ -47,7 +47,7 @@ struct CommandDescriptionStruct {
typedef struct CommandDescriptionStruct CommandDescription;
-class KDE_EXPORT CommandTable {
+class TDE_EXPORT CommandTable {
int nCommandDesc;
CommandDescription commandDesc[50];
diff --git a/mpeglib/example/yaf/yafcore/inputDecoder.h b/mpeglib/example/yaf/yafcore/inputDecoder.h
index 0a5623a0..4051fd3d 100644
--- a/mpeglib/example/yaf/yafcore/inputDecoder.h
+++ b/mpeglib/example/yaf/yafcore/inputDecoder.h
@@ -29,7 +29,7 @@ class CommandTable;
class CommandTableYAF;
class CommandLine;
-class KDE_EXPORT InputDecoder {
+class TDE_EXPORT InputDecoder {
int status;
CommandTable* commandTable;
diff --git a/mpeglib/example/yaf/yafcore/inputInterface.h b/mpeglib/example/yaf/yafcore/inputInterface.h
index f3ea0065..d22bc615 100644
--- a/mpeglib/example/yaf/yafcore/inputInterface.h
+++ b/mpeglib/example/yaf/yafcore/inputInterface.h
@@ -37,7 +37,7 @@ extern "C" {
class MultiReader;
-class KDE_EXPORT InputInterface {
+class TDE_EXPORT InputInterface {
int currentCommandNumber;
diff --git a/mpeglib/example/yaf/yafcore/outputInterface.h b/mpeglib/example/yaf/yafcore/outputInterface.h
index 0a24fd92..fe4c8e71 100644
--- a/mpeglib/example/yaf/yafcore/outputInterface.h
+++ b/mpeglib/example/yaf/yafcore/outputInterface.h
@@ -28,7 +28,7 @@
//#define _DEBUG_OUTPUT
-class KDE_EXPORT OutputInterface {
+class TDE_EXPORT OutputInterface {
int protocolSyntax;
int nr;
diff --git a/mpeglib/example/yaf/yafcore/yaf_control.h b/mpeglib/example/yaf/yafcore/yaf_control.h
index 890a1bb8..630dc398 100644
--- a/mpeglib/example/yaf/yafcore/yaf_control.h
+++ b/mpeglib/example/yaf/yafcore/yaf_control.h
@@ -19,7 +19,7 @@
// prototypes
//extern "C" void control_xplayer();
-KDE_EXPORT void yaf_control(InputInterface* input,
+TDE_EXPORT void yaf_control(InputInterface* input,
OutputInterface* output,
InputDecoder* decoder);
diff --git a/mpeglib/example/yaf/yafxplayer/inputDecoderYAF.h b/mpeglib/example/yaf/yafxplayer/inputDecoderYAF.h
index 2002dc58..798c8a62 100644
--- a/mpeglib/example/yaf/yafxplayer/inputDecoderYAF.h
+++ b/mpeglib/example/yaf/yafxplayer/inputDecoderYAF.h
@@ -23,7 +23,7 @@
#include <kdemacros.h>
-class KDE_EXPORT InputDecoderYAF : public InputDecoderXPlayer {
+class TDE_EXPORT InputDecoderYAF : public InputDecoderXPlayer {
DecoderPlugin* plugin;
YafOutputStream* output;
diff --git a/mpeglib/example/yaf/yafxplayer/yafOutputStream.h b/mpeglib/example/yaf/yafxplayer/yafOutputStream.h
index bb7df423..25d7978f 100644
--- a/mpeglib/example/yaf/yafxplayer/yafOutputStream.h
+++ b/mpeglib/example/yaf/yafxplayer/yafOutputStream.h
@@ -49,7 +49,7 @@
-class KDE_EXPORT YafOutputStream : public OutputStream {
+class TDE_EXPORT YafOutputStream : public OutputStream {
long bytes;