MAX_LINE_SIZE
char buffer[MAX_LINE_SIZE];
while ((fgets(buffer, MAX_LINE_SIZE, stream) != NULL) &&
char buf[MAX_LINE_SIZE];
char line_in[MAX_LINE_SIZE];
MP_WCHAR fullline[MAX_LINE_SIZE]; /* line read in from mpapi.conf */
(charPtr = fgetws(fullline, MAX_LINE_SIZE, mpconf))) {
MP_CHAR fullline[MAX_LINE_SIZE]; /* Full line to add to mpapi.conf */
strncat(fullline, "\t", MAX_LINE_SIZE - strlen(pluginid));
strncat(fullline, pFileName, MAX_LINE_SIZE - strlen(pluginid) - 1);
MAX_LINE_SIZE - strlen(pluginid) - strlen(pFileName) -1);