X-Git-Url: http://git.pk910.de/?p=NeonServV5.git;a=blobdiff_plain;f=src%2FmemoryInfo.h;h=4ed52fa0279a618617006a9788538eba0ad0bfb0;hp=f1cca21dc9ab84075dfcfa66f74ef4e35201c99a;hb=HEAD;hpb=3b03d79e0abdb8ed15dcc8943cf761f2a2775cf1 diff --git a/src/memoryInfo.h b/src/memoryInfo.h index f1cca21..4ed52fa 100644 --- a/src/memoryInfo.h +++ b/src/memoryInfo.h @@ -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