rearranged NeonServ code to be modular
[NeonServV5.git] / src / memoryInfo.h
index f1cca21dc9ab84075dfcfa66f74ef4e35201c99a..f6987bf6f1807edf6f95c9272d8c2971210d91d5 100644 (file)
@@ -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