[SDK] One step further towards ReactOS source code tree restructure: the sdk folder...
[reactos.git] / reactos / tools / cabman / raw.h
diff --git a/reactos/tools/cabman/raw.h b/reactos/tools/cabman/raw.h
deleted file mode 100644 (file)
index dfbc2ae..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * COPYRIGHT:   See COPYING in the top level directory
- * PROJECT:     ReactOS cabinet manager
- * FILE:        tools/cabman/raw.h
- * PURPOSE:     CAB codec for uncompressed data
- */
-
-#pragma once
-
-#include "cabinet.h"
-
-
-/* Classes */
-
-class CRawCodec : public CCABCodec
-{
-public:
-    /* Default constructor */
-    CRawCodec();
-    /* Default destructor */
-    virtual ~CRawCodec();
-    /* Compresses a data block */
-    virtual ULONG Compress(void* OutputBuffer,
-                           void* InputBuffer,
-                           ULONG InputLength,
-                           PULONG OutputLength);
-    /* Uncompresses a data block */
-    virtual ULONG Uncompress(void* OutputBuffer,
-                             void* InputBuffer,
-                             ULONG InputLength,
-                             PULONG OutputLength);
-};
-
-/* EOF */