Merge branch 'development'
[NeonServV5.git] / src / memoryInfo.h
index f1cca21dc9ab84075dfcfa66f74ef4e35201c99a..4ed52fa0279a618617006a9788538eba0ad0bfb0 100644 (file)
@@ -1,4 +1,4 @@
-/* memoryInfo.h - NeonServ v5.3
+/* memoryInfo.h - NeonServ v5.6
  * Copyright (C) 2011-2012  Philipp Kreil (pk910)
  * 
  * This program is free software: you can redistribute it and/or modify
@@ -24,9 +24,10 @@ struct memoryInfoFiles {
     struct memoryInfoFiles *next;
 };
 
-struct memoryInfoFiles *getMemoryInfoFiles();
-void freeMemoryInfoFiles(struct memoryInfoFiles *files);
-
+#ifndef DND_FUNCTIONS
+/* MODULAR ACCESSIBLE */ struct memoryInfoFiles *getMemoryInfoFiles();
+/* MODULAR ACCESSIBLE */ void freeMemoryInfoFiles(struct memoryInfoFiles *files);
+#endif
 
 struct memoryInfoLines {
     unsigned int line;
@@ -35,8 +36,9 @@ struct memoryInfoLines {
     struct memoryInfoLines *next;
 };
 
-struct memoryInfoLines *getMemoryInfoLines(const char *filename);
-void freeMemoryInfoLines(struct memoryInfoLines *lines);
-
+#ifndef DND_FUNCTIONS
+/* MODULAR ACCESSIBLE */ struct memoryInfoLines *getMemoryInfoLines(const char *filename);
+/* MODULAR ACCESSIBLE */ void freeMemoryInfoLines(struct memoryInfoLines *lines);
+#endif
 
 #endif