X-Git-Url: http://git.chise.org/gitweb/?p=chise%2Fxemacs-chise.git.1;a=blobdiff_plain;f=src%2Fntheap.h;h=cb169d270c92aeff8153a9520dd5be184a670dfb;hp=6bde2664780d9fd44988f2266fe3560e18f3fa58;hb=3e447015251ce6dcde843cbed10d9033d5538622;hpb=976b002b16336930724ae22476014583ad022e7d diff --git a/src/ntheap.h b/src/ntheap.h index 6bde266..cb169d2 100644 --- a/src/ntheap.h +++ b/src/ntheap.h @@ -23,8 +23,8 @@ Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA /* Adapted for XEmacs by David Hobley */ /* Synced with FSF Emacs 19.34.6 by Marc Paquette */ -#ifndef NTHEAP_H_ -#define NTHEAP_H_ +#ifndef INCLUDED_ntheap_h_ +#define INCLUDED_ntheap_h_ #include @@ -54,13 +54,6 @@ extern int nt_minor_version; #define UNINIT_PTR ((void *) 0xF0A0F0A0) #define UNINIT_LONG (0xF0A0F0A0L) -enum { - OS_WIN95 = 1, - OS_NT -}; - -extern int os_subtype; - /* Emulation of Unix sbrk(). */ extern void *sbrk (unsigned long size); @@ -87,7 +80,7 @@ extern unsigned char *round_to_next (unsigned char *address, /* Useful routines for manipulating memory-mapped files. */ typedef struct file_data { - char *name; + const char *name; unsigned long size; HANDLE file; HANDLE file_mapping; @@ -103,8 +96,8 @@ typedef struct file_data { #define RVA_TO_PTR(var,section,filedata) \ ((void *)(RVA_TO_OFFSET(var,section) + (filedata).file_base)) -int open_input_file (file_data *p_file, CONST char *name); -int open_output_file (file_data *p_file, CONST char *name, unsigned long size); +int open_input_file (file_data *p_file, const char *name); +int open_output_file (file_data *p_file, const char *name, unsigned long size); void close_file_data (file_data *p_file); -#endif /* NTHEAP_H_ */ +#endif /* INCLUDED_ntheap_h_ */