X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/9850eff524bd0747a9561f3b4c90dfc3749f4ecb..578098f346bf9e1f23ca86ed764fc00b035b427f:/src/w32heap.h diff --git a/src/w32heap.h b/src/w32heap.h index a624aa1e01..fda3c58bf0 100644 --- a/src/w32heap.h +++ b/src/w32heap.h @@ -1,6 +1,5 @@ /* Heap management routines (including unexec) for GNU Emacs on Windows NT. - Copyright (C) 1994, 2001, 2002, 2003, 2004, 2005, - 2006, 2007, 2008 Free Software Foundation, Inc. + Copyright (C) 1994, 2001-2012 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -41,8 +40,8 @@ along with GNU Emacs. If not, see . #define get_w32_major_version() w32_major_version #define get_w32_minor_version() w32_minor_version -extern unsigned char *get_data_start(); -extern unsigned char *get_data_end(); +extern unsigned char *get_data_start (void); +extern unsigned char *get_data_end (void); extern unsigned long reserved_heap_size; extern SYSTEM_INFO sysinfo_cache; extern OSVERSIONINFO osinfo_cache; @@ -52,7 +51,7 @@ extern int w32_minor_version; extern int w32_build_number; enum { - OS_WIN95 = 1, + OS_9X = 1, OS_NT }; @@ -62,7 +61,7 @@ extern int os_subtype; extern void *sbrk (unsigned long size); /* Initialize heap structures for sbrk on startup. */ -extern void init_heap (); +extern void init_heap (void); /* Round the heap to this size. */ extern void round_heap (unsigned long size); @@ -93,6 +92,3 @@ IMAGE_SECTION_HEADER * find_section (char * name, IMAGE_NT_HEADERS * nt_header); IMAGE_SECTION_HEADER * rva_to_section (DWORD rva, IMAGE_NT_HEADERS * nt_header); #endif /* NTHEAP_H_ */ - -/* arch-tag: 3ba4cbe1-8a09-4a41-8f37-fd31f7426b3c - (do not change this comment) */