[INFLIB]
[reactos.git] / reactos / lib / inflib / infhostput.c
diff --git a/reactos/lib/inflib/infhostput.c b/reactos/lib/inflib/infhostput.c
deleted file mode 100644 (file)
index 3eb5970..0000000
+++ /dev/null
@@ -1,114 +0,0 @@
-/*
- * PROJECT:    .inf file parser
- * LICENSE:    GPL - See COPYING in the top level directory
- * COPYRIGHT:  Copyright 2005 Ge van Geldorp <gvg@reactos.org>
- */
-
-/* INCLUDES *****************************************************************/
-
-#include "inflib.h"
-#include "infhost.h"
-
-#define NDEBUG
-#include <debug.h>
-
-int
-InfHostWriteFile(HINF InfHandle, const CHAR *FileName,
-                 const CHAR *HeaderComment)
-{
-  CHAR *Buffer;
-  ULONG BufferSize;
-  INFSTATUS Status;
-  FILE *File;
-
-  Status = InfpBuildFileBuffer((PINFCACHE) InfHandle, &Buffer, &BufferSize);
-  if (! INF_SUCCESS(Status))
-    {
-      errno = Status;
-      return -1;
-    }
-
-  File = fopen(FileName, "wb");
-  if (NULL == File)
-    {
-      FREE(Buffer);
-      DPRINT1("fopen() failed (errno %d)\n", errno);
-      return -1;
-    }
-
-  DPRINT("fopen() successful\n");
-
-  if (NULL != HeaderComment && '\0' != *HeaderComment)
-    {
-      fprintf(File, "; %s\r\n\r\n", HeaderComment);
-    }
-
-  if (BufferSize != fwrite(Buffer, (size_t)1, (size_t)BufferSize, File))
-    {
-      DPRINT1("fwrite() failed (errno %d)\n", errno);
-      fclose(File);
-      FREE(Buffer);
-      return -1;
-    }
-
-  fclose(File);
-
-  FREE(Buffer);
-
-  return 0;
-}
-
-int
-InfHostFindOrAddSection(HINF InfHandle,
-                        const CHAR *Section,
-                        PINFCONTEXT *Context)
-{
-  INFSTATUS Status;
-
-  Status = InfpFindOrAddSection((PINFCACHE) InfHandle, Section, Context);
-  if (INF_SUCCESS(Status))
-    {
-      return 0;
-    }
-  else
-    {
-      errno = Status;
-      return -1;
-    }
-}
-
-int
-InfHostAddLine(PINFCONTEXT Context, const CHAR *Key)
-{
-  INFSTATUS Status;
-
-  Status = InfpAddLineWithKey(Context, Key);
-  if (INF_SUCCESS(Status))
-    {
-      return 0;
-    }
-  else
-    {
-      errno = Status;
-      return -1;
-    }
-}
-
-int
-InfHostAddField(PINFCONTEXT Context, const CHAR *Data)
-{
-  INFSTATUS Status;
-
-  Status = InfpAddField(Context, Data);
-  if (INF_SUCCESS(Status))
-    {
-      return 0;
-    }
-  else
-    {
-      errno = Status;
-      return -1;
-    }
-}
-
-/* EOF */