mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-29 08:31:35 -08:00
This change will be integrated but ignored (-ay) to the gg-epcore/union sources, so that they retain HopeNames. Copied from Perforce Change: 24911 ServerID: perforce.ravenbrook.com
32 lines
553 B
C
32 lines
553 B
C
/* impl.c.mpsint:
|
|
*
|
|
* WIN32 MEMORY POOL SYSTEM INTERFACE LAYER EXTRAS
|
|
*
|
|
* $Id$
|
|
*
|
|
* Copyright (c) 2001 Ravenbrook Limited.
|
|
*/
|
|
|
|
#include "mpm.h"
|
|
#include "mps.h"
|
|
|
|
#include "mpswin.h"
|
|
|
|
SRCID(mpsint, "$Id$");
|
|
|
|
/* This is defined in protnt.c */
|
|
extern LONG ProtSEHfilter(LPEXCEPTION_POINTERS info);
|
|
|
|
LONG mps_SEH_filter(LPEXCEPTION_POINTERS info,
|
|
void **hp_o, size_t *hs_o)
|
|
{
|
|
UNUSED(hp_o);
|
|
UNUSED(hs_o);
|
|
return ProtSEHfilter(info);
|
|
}
|
|
|
|
void mps_SEH_handler(void *p, size_t s)
|
|
{
|
|
UNUSED(p); UNUSED(s);
|
|
NOTREACHED;
|
|
}
|