Lines Matching defs:dmxFontPath
86 char *dmxFontPath = NULL;
806 if (dmxFontPath) {
809 len = strlen(dmxFontPath);
810 dmxFontPath = realloc(dmxFontPath, len+fplen+1);
811 dmxFontPath[len] = ',';
812 strncpy(&dmxFontPath[len+1], fp, fplen);
814 dmxFontPath = malloc(fplen);
815 strncpy(dmxFontPath, fp, fplen);
818 defaultFontPath = dmxFontPath;