summaryrefslogtreecommitdiff
path: root/src/w32gui.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/w32gui.h')
-rw-r--r--src/w32gui.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/w32gui.h b/src/w32gui.h
index b8c8557357a..d04ce625d1d 100644
--- a/src/w32gui.h
+++ b/src/w32gui.h
@@ -22,14 +22,11 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#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
{