Mercurial > hg > xemacs-beta
view src/syswindows.h @ 593:5fd7ba8b56e7
[xemacs-hg @ 2001-05-31 12:45:27 by ben]
xemacs-faq.texi: Major rewrite.
Update all MS Windows info to current.
Redo section 6.1 almost completely.
Incorporate sections 1 and 2 of Hrvoje's FAQ.
etags.el: Fix infloop when going up to the root.
s\cygwin32.h: Don't unilaterally include ntplay, but only when we're compiling
with native sound (look in configure now).
event-msw.c: Fix yet more problems with C-g handling.
Implement debug-mswindows-events.
event-stream.c, events.h, signal.c, sysdep.h:
Rearrange the signal-handling code to eliminate the former
spaghetti logic paths in it. Document clearly what
"low-level" and "high-level" timeouts are. Rename some
functions with unclear names (e.g. "...alarm...") to names
that reflect what they actually do (e.g. "...async_timeout...").
Fix numerous bugs discovered in the process.
console-x.h, event-Xt.c, event-msw.c, frame-x.c:
Hopefully make XEmacs properly maintain the "iconified"
state on frames at all times. This should fix the "can't
delete a frame with C-x 5 0 when there's another iconified
frame out there" bug.
Put a notice in of further changes that should probably
be made to clean up the frame-visibility support.
(especially directed at Jan Vroonhof)
lisp.h, miscplay.c:
Rename SBufbyte to CBufbyte to avoid a misleading name.
Eliminate UChar, which is not used anywhere and contributes
no semantic info. Add a comment about the documentation-only
properties of the char/unsigned char typedefs. Add
SChar_Binary as an explicitly `signed' version of Char_Binary
and put back the `signed' declarations in miscplay.c.
alloc.c:
Use char typedefs.
console-msw.c, device-msw.c, dialog-msw.c, editfns.c, fileio.c, glyphs-eimage.c, menubar-msw.c, ntplay.c, objects-msw.c, realpath.c, redisplay-msw.c, select-msw.c, syswindows.h, win32.c:
Eliminate numerous C++ errors.
frame-msw.c:
Eliminate numerous C++ errors and Mule-ize.
glyphs-msw.c:
Eliminate numerous C++ errors and use char typedefs.
configure.in:
Fix problems detecting both native and Linux sound on Cygwin
when compiled with --with-msw=no.
Rearrange file-coding handling a bit to avoid warning when
compiling with Mule.
configure.in, configure.usage, INSTALL:
Document XEMACS_CC and corresponding compiler option --xemacs-compiler.
Explain how to build xemacs using a C++ compiler.
author | ben |
---|---|
date | Thu, 31 May 2001 12:45:41 +0000 |
parents | ed498ef2108b |
children | fdefd0186b75 |
line wrap: on
line source
/* Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2001 Ben Wing. This file is part of XEmacs. XEmacs is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. XEmacs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with XEmacs; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Synched up with: Not in FSF. */ /* Authorship: Created May 2000 by Andy Piper. Windows-Mule stuff added by Ben Wing. */ #ifndef INCLUDED_syswindows_h_ #define INCLUDED_syswindows_h_ /* Note that there are currently FOUR different general Windows-related include files in src! Uses are approximately: syswindows.h: Mostly a wrapper around <windows.h>, including missing defines as necessary. Also includes stuff needed on both Cygwin and native Windows, regardless of window system chosen. console-msw.h: Used on both Cygwin and native Windows, but only when native window system (as opposed to X) chosen. nt.h: [will be renamed to win32.h] Used only on native Windows, and regardless of window system chosen -- but used on both purely native Windows (s/windowsnt.h) and MinGW (s/mingw32.h). ntheap.h: Used only on native Windows and only when standard dumping mechanism (unexnt.c) used. All of the last three files include the first. */ #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #endif #include <windows.h> #if defined (WIN32_LEAN_AND_MEAN) # ifdef HAVE_X_WINDOWS /* Christ almighty. The problems you get when combining two large code bases, neither with any respect for namespace purity. */ # undef Status # endif # include <winspool.h> # ifdef HAVE_X_WINDOWS # define Status int # endif # include <mmsystem.h> # include <shellapi.h> # include <ddeml.h> #endif #include <lmaccess.h> /* next three for NetUserEnum and friends */ #include <lmapibuf.h> #include <lmerr.h> #include <lmcons.h> /* for UNLEN and possibly other constants */ /* mmsystem.h defines. */ #ifndef SND_ASYNC #define SND_ASYNC 1 #endif #ifndef SND_NODEFAULT #define SND_NODEFAULT 2 #endif #ifndef SND_MEMORY #define SND_MEMORY 4 #endif #ifndef SND_FILENAME #define SND_FILENAME 0x2000L #endif /* winspool.h defines. */ #ifndef PHYSICALWIDTH #define PHYSICALWIDTH 110 #endif #ifndef PHYSICALHEIGHT #define PHYSICALHEIGHT 111 #endif #ifndef PHYSICALOFFSETX #define PHYSICALOFFSETX 112 #endif #ifndef PHYSICALOFFSETY #define PHYSICALOFFSETY 113 #endif /* windows.h defines. */ #if defined (CYGWIN) && (CYGWIN_VERSION_DLL_MAJOR < 20) typedef NMHDR *LPNMHDR; #endif #ifndef SPI_GETWHEELSCROLLLINES #define SPI_GETWHEELSCROLLLINES 104 #endif #ifndef WHEEL_PAGESCROLL #define WHEEL_PAGESCROLL (UINT_MAX) #endif #ifndef WHEEL_DELTA #define WHEEL_DELTA 120 #endif #ifndef WM_MOUSEWHEEL #define WM_MOUSEWHEEL 0x20A #endif #ifndef VK_APPS #define VK_APPS 0x5D #endif #ifndef SIF_TRACKPOS #define SIF_TRACKPOS 0x0010 #endif #ifndef FW_BLACK #define FW_BLACK FW_HEAVY #endif #ifndef FW_ULTRABOLD #define FW_ULTRABOLD FW_EXTRABOLD #endif #ifndef FW_DEMIBOLD #define FW_DEMIBOLD FW_SEMIBOLD #endif #ifndef FW_ULTRALIGHT #define FW_ULTRALIGHT FW_EXTRALIGHT #endif #ifndef APPCMD_FILTERINITS #define APPCMD_FILTERINITS 0x20L #endif #ifndef CBF_FAIL_SELFCONNECTIONS #define CBF_FAIL_SELFCONNECTIONS 0x1000 #endif #ifndef CBF_SKIP_ALLNOTIFICATIONS #define CBF_SKIP_ALLNOTIFICATIONS 0x3C0000 #endif #ifndef CBF_FAIL_ADVISES #define CBF_FAIL_ADVISES 0x4000 #endif #ifndef CBF_FAIL_POKES #define CBF_FAIL_POKES 0x10000 #endif #ifndef CBF_FAIL_REQUESTS #define CBF_FAIL_REQUESTS 0x20000 #endif #ifndef SZDDESYS_TOPIC #define SZDDESYS_TOPIC "System" #endif #ifndef JOHAB_CHARSET #define JOHAB_CHARSET 130 #endif #ifndef MAC_CHARSET #define MAC_CHARSET 77 #endif /***************************************************************/ /* Definitions for Mule under MS Windows */ #include <wchar.h> #ifdef CYGWIN /* All but wcscmp and wcslen left out of Cygwin headers -- but present in /usr/include/mingw32/string.h! */ wchar_t* wcscat (wchar_t*, const wchar_t*); wchar_t* wcschr (const wchar_t*, wchar_t); int wcscoll (const wchar_t*, const wchar_t*); wchar_t* wcscpy (wchar_t*, const wchar_t*); size_t wcscspn (const wchar_t*, const wchar_t*); /* Note: No wcserror in CRTDLL. */ wchar_t* wcsncat (wchar_t*, const wchar_t*, size_t); int wcsncmp(const wchar_t*, const wchar_t*, size_t); wchar_t* wcsncpy(wchar_t*, const wchar_t*, size_t); wchar_t* wcspbrk(const wchar_t*, const wchar_t*); wchar_t* wcsrchr(const wchar_t*, wchar_t); size_t wcsspn(const wchar_t*, const wchar_t*); wchar_t* wcsstr(const wchar_t*, const wchar_t*); wchar_t* wcstok(wchar_t*, const wchar_t*); size_t wcsxfrm(wchar_t*, const wchar_t*, size_t); #endif /* CYGWIN */ // extern int mswindows_windows9x_p; /* #define XEUNICODE_P (!mswindows_windows9x_p) */ #define XEUNICODE_P 0 #define XETCHAR_SIZE (XEUNICODE_P ? sizeof (WCHAR) : sizeof (CHAR)) #define MAX_XETCHAR_SIZE sizeof (WCHAR) #define XETEXT1(arg) (XEUNICODE_P ? ((char *) (L##arg)) : (arg)) /* We need to do this indirection in case ARG is also a manifest constant. I don't really understand why. --ben */ #define XETEXT(arg) XETEXT1(arg) #define XECOPY_TCHAR(ptr, ch) \ (XEUNICODE_P ? (* (LPWSTR) (ptr) = L##ch) : (* (LPSTR) (ptr) = (ch))) #define xetcslen(arg) (XEUNICODE_P ? wcslen ((wchar_t *) arg) : strlen (arg)) #define xetcscmp(s1, s2) \ (XEUNICODE_P ? wcscmp ((wchar_t *) s1, (wchar_t *) s2) \ : strcmp (s1, s2)) #define xetcscpy(s1, s2) \ (XEUNICODE_P ? (char *) wcscpy ((wchar_t *) s1, (wchar_t *) s2) \ : strcpy (s1, s2)) #define xetcschr(s, ch) \ (XEUNICODE_P ? (char *) wcschr ((wchar_t *) s, (WCHAR) ch) \ : strchr (s, ch)) #define xetcsrchr(s, ch) \ (XEUNICODE_P ? (char *) wcsrchr ((wchar_t *) s, (WCHAR) ch) \ : strrchr (s, ch)) #define LOCAL_FILE_FORMAT_TO_TSTR(path, out) \ do { \ Bufbyte *lttff; \ \ LOCAL_TO_WIN32_FILE_FORMAT (path, lttff); \ C_STRING_TO_EXTERNAL (lttff, out, Qmswindows_tstr); \ } while (0) Lisp_Object tstr_to_local_file_format (Extbyte *pathout); #ifdef CYGWIN #define LOCAL_TO_WIN32_FILE_FORMAT(path, pathout) \ do { \ /* NOTE: It is a bit evil that here and below we are passing \ internal-format data to a function that (nominally) should work \ with external-format data. But in point of fact, the Cygwin \ conversion functions are *NOT* localized, and will fail if they \ get 7-bit ISO2022-encoded data. We know that our internal format \ is ASCII-compatible, and so these functions will work fine with \ this data. */ \ Lisp_Object ltwff1 = (path); \ int ltwff2 = \ cygwin_posix_to_win32_path_list_buf_size ((char *) \ XSTRING_DATA (ltwff1)); \ pathout = (Bufbyte *) alloca (ltwff2); \ cygwin_posix_to_win32_path_list ((char *) XSTRING_DATA (ltwff1), \ (char *) pathout); \ } while (0) #else #define LOCAL_TO_WIN32_FILE_FORMAT(path, pathout) \ do { \ (pathout) = XSTRING_DATA (path); \ } while (0) #endif #ifdef CYGWIN #define WIN32_TO_LOCAL_FILE_FORMAT(path, pathout) \ do { \ Bufbyte *wtlff1 = (path); \ int wtlff2 = \ cygwin_win32_to_posix_path_list_buf_size ((char *) wtlff1); \ Bufbyte *wtlff3 = (Bufbyte *) alloca (wtlff2); \ cygwin_win32_to_posix_path_list ((char *) wtlff1, (char *) wtlff3); \ (pathout) = build_string ((CBufbyte *) wtlff3); \ } while (0) #else #define WIN32_TO_LOCAL_FILE_FORMAT(path, pathout) \ do { \ (pathout) = build_string ((CBufbyte *) path); \ } while (0) #endif extern BOOL (WINAPI *xSwitchToThread) (VOID); extern HKL (WINAPI *xGetKeyboardLayout) (DWORD); extern BOOL (WINAPI *xSetMenuDefaultItem) (HMENU, UINT, UINT); extern BOOL (WINAPI *xInsertMenuItemA) (HMENU, UINT, BOOL, LPCMENUITEMINFOA); extern BOOL (WINAPI *xInsertMenuItemW) (HMENU, UINT, BOOL, LPCMENUITEMINFOW); extern HANDLE (WINAPI *xLoadImageA) (HINSTANCE, LPCSTR, UINT, int, int, UINT); extern HANDLE (WINAPI *xLoadImageW) (HINSTANCE, LPCWSTR, UINT, int, int, UINT); extern ATOM (WINAPI *xRegisterClassExA) (CONST WNDCLASSEXA *); extern ATOM (WINAPI *xRegisterClassExW) (CONST WNDCLASSEXW *); extern int (WINAPI *xEnumFontFamiliesExA) (HDC, LPLOGFONTA, FONTENUMPROCA, LPARAM, DWORD); extern int (WINAPI *xEnumFontFamiliesExW) (HDC, LPLOGFONTW, FONTENUMPROCW, LPARAM, DWORD); extern DWORD (WINAPI *xSHGetFileInfoA) (LPCSTR, DWORD, SHFILEINFOA FAR *, UINT, UINT); extern DWORD (WINAPI *xSHGetFileInfoW) (LPCWSTR, DWORD, SHFILEINFOW FAR *, UINT, UINT); extern NET_API_STATUS (NET_API_FUNCTION *xNetUserEnum) ( IN LPCWSTR servername OPTIONAL, IN DWORD level, IN DWORD filter, OUT LPBYTE *bufptr, IN DWORD prefmaxlen, OUT LPDWORD entriesread, OUT LPDWORD totalentries, IN OUT LPDWORD resume_handle OPTIONAL ); extern NET_API_STATUS (NET_API_FUNCTION *xNetApiBufferFree) ( IN LPVOID Buffer ); #endif /* INCLUDED_syswindows_h_ */