Mercurial > hg > xemacs-beta
comparison src/intl-auto-encap-win32.c @ 4911:7eec2a1f3412
Fix Visual Studio 6 build
author | Vin Shelton <acs@xemacs.org> |
---|---|
date | Mon, 01 Feb 2010 17:08:41 -0500 |
parents | 70089046adef |
children | 0f2338afbabf |
comparison
equal
deleted
inserted
replaced
4910:6bc1f3f6cf0d | 4911:7eec2a1f3412 |
---|---|
945 /* NOTE: error arg 1, VS6 prototype, missing const. | 945 /* NOTE: error arg 1, VS6 prototype, missing const. |
946 NOTE: Prototype manually overridden. | 946 NOTE: Prototype manually overridden. |
947 Header file claims: | 947 Header file claims: |
948 WINUSERAPI HWND WINAPI CreateMDIWindow(LPCWSTR,LPCWSTR,DWORD,int,int,int,int,HWND,HINSTANCE,LPARAM) | 948 WINUSERAPI HWND WINAPI CreateMDIWindow(LPCWSTR,LPCWSTR,DWORD,int,int,int,int,HWND,HINSTANCE,LPARAM) |
949 Overridden with: | 949 Overridden with: |
950 HWND CreateMDIWindow(LPWSTR,LPCWSTR,DWORD,int,int,int,int,HWND,HINSTANCE,LPARAM) | 950 HWND CreateMDIWindow(LPWSTR,LPWSTR,DWORD,int,int,int,int,HWND,HINSTANCE,LPARAM) |
951 Differences in return-type qualifiers, e.g. WINAPI, are not important. | 951 Differences in return-type qualifiers, e.g. WINAPI, are not important. |
952 */ | 952 */ |
953 HWND | 953 HWND |
954 qxeCreateMDIWindow (Extbyte * arg1, const Extbyte * arg2, DWORD arg3, int arg4, int arg5, int arg6, int arg7, HWND arg8, HINSTANCE arg9, LPARAM arg10) | 954 qxeCreateMDIWindow (Extbyte * arg1, Extbyte * arg2, DWORD arg3, int arg4, int arg5, int arg6, int arg7, HWND arg8, HINSTANCE arg9, LPARAM arg10) |
955 { | 955 { |
956 if (XEUNICODE_P) | 956 if (XEUNICODE_P) |
957 return CreateMDIWindowW ((LPWSTR) arg1, (LPCWSTR) arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); | 957 return CreateMDIWindowW ((LPWSTR) arg1, (LPWSTR) arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); |
958 else | 958 else |
959 return CreateMDIWindowA ((LPSTR) arg1, (LPCSTR) arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); | 959 return CreateMDIWindowA ((LPSTR) arg1, (LPSTR) arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); |
960 } | 960 } |
961 | 961 |
962 HWND | 962 HWND |
963 qxeCreateWindowEx (DWORD arg1, const Extbyte * arg2, const Extbyte * arg3, DWORD arg4, int arg5, int arg6, int arg7, int arg8, HWND arg9, HMENU arg10, HINSTANCE arg11, LPVOID arg12) | 963 qxeCreateWindowEx (DWORD arg1, const Extbyte * arg2, const Extbyte * arg3, DWORD arg4, int arg5, int arg6, int arg7, int arg8, HWND arg9, HMENU arg10, HINSTANCE arg11, LPVOID arg12) |
964 { | 964 { |