1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-16 16:20:40 -08:00

Note an unused parameter; include windows.h in the new way

Copied from Perforce
 Change: 18837
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Pekka Pirinen 1997-09-25 20:56:53 +01:00
parent edd02c3fca
commit 335be26af8

View file

@ -1,6 +1,6 @@
/* impl.c.protw3: PROTECTION FOR WIN32
*
* $HopeName: MMsrc!protw3.c(MMdevel_config_thread.3) $
* $HopeName: MMsrc!protw3.c(trunk.11) $
* Copyright (C) 1995, 1997 Harlequin Group, all rights reserved
*/
@ -13,9 +13,9 @@
#error "protw3.c implements protection, but PROTECTION is not set"
#endif
#include <windows.h>
#include "mpswin.h"
SRCID(protw3, "$HopeName: MMsrc!protw3.c(MMdevel_config_thread.3) $");
SRCID(protw3, "$HopeName: MMsrc!protw3.c(trunk.11) $");
void ProtSetup(void)
@ -102,6 +102,7 @@ LONG ProtSEHfilter(LPEXCEPTION_POINTERS info)
void ProtSync(Arena arena)
{
UNUSED(arena);
NOOP;
}
@ -109,7 +110,7 @@ void ProtSync(Arena arena)
void ProtTramp(void **resultReturn, void *(*f)(void *, size_t),
void *p, size_t s)
{
void *result;
void *result = NULL; /* stop warnings about uninitialized result */
AVER(resultReturn != NULL);
AVER(FUNCHECK(f));