Modules/UDI - Implimenting UDI support, can load udi_dpt from udiref
[tpg/acess2.git] / KernelLand / Modules / Interfaces / UDI / buf.c
diff --git a/KernelLand/Modules/Interfaces/UDI/buf.c b/KernelLand/Modules/Interfaces/UDI/buf.c
deleted file mode 100644 (file)
index 5327cc8..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-/**
- * \file buf.c
- * \author John Hodge (thePowersGang)
- * 
- * Buffer Manipulation
- */
-#include <acess.h>
-#include <udi.h>
-
-// === EXPORTS ===
-EXPORT(udi_buf_copy);
-EXPORT(udi_buf_write);
-EXPORT(udi_buf_read);
-EXPORT(udi_buf_free);
-
-// === CODE ===
-void udi_buf_copy(
-       udi_buf_copy_call_t *callback,
-       udi_cb_t        *gcb,
-       udi_buf_t       *src_buf,
-       udi_size_t      src_off,
-       udi_size_t      src_len,
-       udi_buf_t       *dst_buf,
-       udi_size_t      dst_off,
-       udi_size_t      dst_len,
-       udi_buf_path_t path_handle
-       )
-{
-       UNIMPLEMENTED();
-}
-
-/**
- * \brief Write to a buffer
- * \param callback     Function to call once the write has completed
- * \param gcb  Control Block
- * \param src_mem      Source Data
- * \param src_len      Length of source data
- * \param dst_buf      Destination buffer
- * \param dst_off      Destination offset in the buffer
- * \param dst_len      Length of destination area (What the?, Redundant
- *                     Department of redundacny department)
- * \param path_handle  ???
- */
-void udi_buf_write(
-       udi_buf_write_call_t *callback,
-       udi_cb_t        *gcb,
-       const void      *src_mem,
-       udi_size_t      src_len,
-       udi_buf_t       *dst_buf,
-       udi_size_t      dst_off,
-       udi_size_t      dst_len,
-       udi_buf_path_t path_handle
-       )
-{
-       UNIMPLEMENTED();
-}
-
-void udi_buf_read(
-       udi_buf_t       *src_buf,
-       udi_size_t      src_off,
-       udi_size_t      src_len,
-       void    *dst_mem )
-{
-       UNIMPLEMENTED();
-}
-
-void udi_buf_free(udi_buf_t *buf)
-{
-       UNIMPLEMENTED();
-}

UCC git Repository :: git.ucc.asn.au