Fixing bug 200976, NP_GetValue gets mangled r=jkeiser, sr=bzbarsky, a=asa

This commit is contained in:
peterlubczynski%netscape.com 2003-04-25 21:56:47 +00:00
Родитель a58b5ef4fa
Коммит f75a4e4ba8
2 изменённых файлов: 3 добавлений и 2 удалений

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

@ -38,7 +38,7 @@
/*
* npupp.h $Revision: 3.14 $
* npupp.h $Revision: 3.15 $
* function call mecahnics needed by platform specific glue code.
*/
@ -1280,6 +1280,7 @@ extern "C" {
char* NP_GetMIMEDescription(void);
NPError NP_Initialize(NPNetscapeFuncs*, NPPluginFuncs*);
NPError NP_Shutdown(void);
NPError NP_GetValue(void *future, NPPVariable aVariable, void *aValue);
#ifdef __cplusplus
}

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

@ -364,7 +364,7 @@ NP_GetMIMEDescription(void)
* that the navigator needs.
*/
NPError
NP_GetValue(NPP future, NPPVariable variable, void *value)
NP_GetValue(void* future, NPPVariable variable, void *value)
{
return NPP_GetValue(future, variable, value);
}