making the stubs extern "C" so the project will link...

This commit is contained in:
beard%netscape.com 1999-04-03 21:15:46 +00:00
Родитель 2e99ced713
Коммит e229176a68
1 изменённых файлов: 7 добавлений и 4 удалений

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

@ -3184,20 +3184,23 @@ SI_DisplaySignonInfoAsHTML(MWContext *context)
}
#else
PUBLIC void
#include "prtypes.h"
extern "C" {
void
SI_RestoreSignonData
(char* URLName, char* name, char** value)
{
}
PUBLIC void
void
SI_RememberSignonData
(char* URLName, char** name_array, char** value_array, char** type_array, PRInt32 value_cnt)
{
}
PUBLIC void
SI_DisplaySignonInfoAsHTML(MWContext *context)
void
SI_DisplaySignonInfoAsHTML(struct MWContext *context)
{
}
}
#endif