X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/01fcc3a532872b29784a4d888ab9cc1aef0eed01..249635f0dfb22bcae4c7134e95f01640a6a0d149:/src/w32gui.h diff --git a/src/w32gui.h b/src/w32gui.h index 739ff3c92e..d04ce625d1 100644 --- a/src/w32gui.h +++ b/src/w32gui.h @@ -1,5 +1,5 @@ /* Definitions and headers for communication on the Microsoft Windows API. - Copyright (C) 1995, 2001-2013 Free Software Foundation, Inc. + Copyright (C) 1995, 2001-2014 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -22,14 +22,11 @@ along with GNU Emacs. If not, see . */ #include "systime.h" /* for Time */ -/* Local memory management for menus. */ +/* FIXME: old local memory management for menus. */ #define local_heap (GetProcessHeap ()) #define local_alloc(n) (HeapAlloc (local_heap, HEAP_ZERO_MEMORY, (n))) #define local_free(p) (HeapFree (local_heap, 0, ((LPVOID) (p)))) -#define malloc_widget_value() ((widget_value *) local_alloc (sizeof (widget_value))) -#define free_widget_value(wv) (local_free ((wv))) - /* Emulate X GC's by keeping color and font info in a structure. */ typedef struct _XGCValues {