aboutsummaryrefslogtreecommitdiff
path: root/nxcomp/RenderFreePictureCompat.h
diff options
context:
space:
mode:
authorFernando Carvajal <fcarvajal@qindel.com>2016-04-12 16:03:37 +0200
committerFernando Carvajal <fcarvajal@qindel.com>2016-04-12 16:03:37 +0200
commit134648169cd0a9359e1a8a31a5bb55a307b0a801 (patch)
tree8a26c1ff4ef0ad0c430b9554d760be79cdd571d1 /nxcomp/RenderFreePictureCompat.h
parenta9be6f59105b7cf29bb799556274dc2c3b3d2af8 (diff)
downloadnx-libs-134648169cd0a9359e1a8a31a5bb55a307b0a801.tar.gz
nx-libs-134648169cd0a9359e1a8a31a5bb55a307b0a801.tar.bz2
nx-libs-134648169cd0a9359e1a8a31a5bb55a307b0a801.zip
Remove obsolete compatibility files from nxcomp
This commit removes obsolete compatibility files whose components were only used to handle compatibility with old protocol versions that are no longer supported. Refs: ArcticaProject/nx-libs#108
Diffstat (limited to 'nxcomp/RenderFreePictureCompat.h')
-rw-r--r--nxcomp/RenderFreePictureCompat.h80
1 files changed, 0 insertions, 80 deletions
diff --git a/nxcomp/RenderFreePictureCompat.h b/nxcomp/RenderFreePictureCompat.h
deleted file mode 100644
index 32d613ae0..000000000
--- a/nxcomp/RenderFreePictureCompat.h
+++ /dev/null
@@ -1,80 +0,0 @@
-/**************************************************************************/
-/* */
-/* Copyright (c) 2001, 2010 NoMachine, http://www.nomachine.com/. */
-/* */
-/* NXCOMP, NX protocol compression and NX extensions to this software */
-/* are copyright of NoMachine. Redistribution and use of the present */
-/* software is allowed according to terms specified in the file LICENSE */
-/* which comes in the source distribution. */
-/* */
-/* Check http://www.nomachine.com/licensing.html for applicability. */
-/* */
-/* NX and NoMachine are trademarks of Medialogic S.p.A. */
-/* */
-/* All rights reserved. */
-/* */
-/**************************************************************************/
-
-#ifndef RenderFreePictureCompat_H
-#define RenderFreePictureCompat_H
-
-//
-// Define the characteristics
-// of this message class here.
-//
-
-#undef MESSAGE_NAME
-#define MESSAGE_NAME "RenderFreePictureCompat"
-
-#undef MESSAGE_STORE
-#define MESSAGE_STORE RenderFreePictureCompatStore
-
-#undef MESSAGE_CLASS
-#define MESSAGE_CLASS RenderMinorExtensionStore
-
-#undef MESSAGE_METHODS
-#define MESSAGE_METHODS "RenderMinorExtensionMethods.h"
-
-#undef MESSAGE_HEADERS
-#define MESSAGE_HEADERS "RenderMinorExtensionHeaders.h"
-
-#undef MESSAGE_TAGS
-#define MESSAGE_TAGS "RenderMinorExtensionTags.h"
-
-#undef MESSAGE_OFFSET
-#define MESSAGE_OFFSET 8
-
-#undef MESSAGE_HAS_SIZE
-#define MESSAGE_HAS_SIZE 0
-
-#undef MESSAGE_HAS_DATA
-#define MESSAGE_HAS_DATA 0
-
-#undef MESSAGE_HAS_FILTER
-#define MESSAGE_HAS_FILTER 0
-
-//
-// Declare the message class.
-//
-
-#include MESSAGE_HEADERS
-
-class MESSAGE_STORE : public MESSAGE_CLASS
-{
- public:
-
- virtual const char *name() const
- {
- return MESSAGE_NAME;
- }
-
- virtual int identitySize(const unsigned char *buffer,
- unsigned int size)
- {
- return MESSAGE_OFFSET;
- }
-
- #include MESSAGE_METHODS
-};
-
-#endif /* RenderFreePictureCompat_H */