This commit is contained in:
pierre%netscape.com 1998-09-03 06:21:26 +00:00
Родитель 3f3ef28cbc
Коммит a905a20756
1 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -26,7 +26,12 @@
/* Netlib utility routine, should be ripped out */
void FE_FileType(char * path, Bool * useDefault, char ** fileType, char ** encoding)
{
return;
if ((path == NULL) || (fileType == NULL) || (encoding == NULL))
return;
*useDefault = TRUE;
*fileType = NULL;
*encoding = NULL;
}
#include "mcom_db.h"
@ -38,7 +43,7 @@ DB * dbopen(const char *fname, int flags,int mode, DBTYPE type, const void *open
char * XP_FileReadLine(char * dest, int32 bufferSize, XP_File file)
{
PR_ASSERT("UNIMPLEMENTED");
PR_ASSERT(FALSE);
return NULL;
}