X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fsyswindows.h;h=131c155d0edf44754745d328d4073da6836bfd40;hb=021b0929854c960c0941faee7e6c84fbce8b1776;hp=e4389c7a08a0a0a7beb6091ced61bbc68ff14d9a;hpb=762383636a99307282c2d93d26c35c046ec24da1;p=chise%2Fxemacs-chise.git.1 diff --git a/src/syswindows.h b/src/syswindows.h index e4389c7..131c155 100644 --- a/src/syswindows.h +++ b/src/syswindows.h @@ -57,16 +57,24 @@ Boston, MA 02111-1307, USA. */ #include -#if (defined (CYGWIN) || defined(MINGW)) && \ - CYGWIN_VERSION_DLL_MAJOR < 21 +#if defined (CYGWIN) && CYGWIN_VERSION_DLL_MAJOR < 21 extern BOOL WINAPI DdeFreeStringHandle(DWORD,HSZ); extern BOOL WINAPI PlaySound(LPCSTR,HMODULE,DWORD); #define stricmp strcasecmp #define FONTENUMPROC FONTENUMEXPROC #define ntmTm ntmentm #elif 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 +#ifdef HAVE_X_WINDOWS +#define Status int +#endif #include +#include #include #include #endif @@ -99,6 +107,17 @@ extern BOOL WINAPI PlaySound(LPCSTR,HMODULE,DWORD); #define PHYSICALOFFSETY 113 #endif +/* shlobj.h defines. */ +#ifndef BIF_EDITBOX +#define BIF_EDITBOX 0x10 +#endif +#ifndef BIF_VALIDATE +#define BIF_VALIDATE 0x20 +#endif +#ifndef BFFM_VALIDATEFAILED +#define BFFM_VALIDATEFAILED 3 +#endif + /* windows.h defines. */ #if defined (CYGWIN) && (CYGWIN_VERSION_DLL_MAJOR < 20) typedef NMHDR *LPNMHDR; @@ -161,18 +180,132 @@ typedef NMHDR *LPNMHDR; #ifndef MAC_CHARSET #define MAC_CHARSET 77 #endif +#ifndef LOCALE_RETURN_NUMBER +#define LOCALE_RETURN_NUMBER 0x20000000 +#endif /***************************************************************/ /* Definitions for Mule under MS Windows */ -/* extern int mswindows_windows9x_p; */ -/* #define EIUNICODE_P (!mswindows_windows9x_p) */ -#define EIUNICODE_P 0 +#include + +#if defined (CYGWIN) && (CYGWIN_VERSION_DLL_COMBINED < 190) + +/* 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 { \ + Lisp_Object ltwff1 = (path); \ + Bufbyte* ltwffp = XSTRING_DATA (ltwff1); \ + if (isalpha (ltwffp[0]) && (IS_DEVICE_SEP (ltwffp[1]))) \ + pathout = ltwffp; \ + else { \ + int ltwff2 = \ + cygwin_posix_to_win32_path_list_buf_size (ltwffp); \ + pathout = (Bufbyte *) alloca (ltwff2); \ + cygwin_posix_to_win32_path_list (ltwffp, 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 (wtlff1); \ + Bufbyte *wtlff3 = (Bufbyte *) alloca (wtlff2); \ + cygwin_win32_to_posix_path_list (wtlff1, wtlff3); \ + (pathout) = build_string (wtlff3); \ +} while (0) +#else +#define WIN32_TO_LOCAL_FILE_FORMAT(path, pathout) \ +do { \ + (pathout) = build_string (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); -#define EITCHAR_SIZE (EIUNICODE_P ? sizeof (WCHAR) : sizeof (CHAR)) -#define EITEXT(arg) (EIUNICODE_P ? L##arg : (arg)) -#define EICOPY_TCHAR(ptr, ch) \ - (EIUNICODE_P ? (* (LPWSTR) (ptr) = L##ch) : (* (LPSTR) (ptr) = (ch))) +extern DWORD (WINAPI *xSHGetFileInfoA) (LPCSTR, DWORD, SHFILEINFOA FAR *, UINT, + UINT); +extern DWORD (WINAPI *xSHGetFileInfoW) (LPCWSTR, DWORD, SHFILEINFOW FAR *, + UINT, UINT); #endif /* INCLUDED_syswindows_h_ */