@@ -783,6 +783,20 @@ MessageBoxA(
783
783
return MessageBoxExA (hWnd , lpText , lpCaption , uType , LANG_NEUTRAL );
784
784
}
785
785
786
+ /*
787
+ * @implemented
788
+ */
789
+ int
790
+ WINAPI
791
+ MessageBoxW (
792
+ IN HWND hWnd ,
793
+ IN LPCWSTR lpText ,
794
+ IN LPCWSTR lpCaption ,
795
+ IN UINT uType )
796
+ {
797
+ return MessageBoxExW (hWnd , lpText , lpCaption , uType , LANG_NEUTRAL );
798
+ }
799
+
786
800
787
801
/*
788
802
* @implemented
@@ -812,7 +826,6 @@ MessageBoxExA(
812
826
return MessageBoxIndirectA (& msgbox );
813
827
}
814
828
815
-
816
829
/*
817
830
* @implemented
818
831
*/
@@ -920,7 +933,6 @@ MessageBoxIndirectA(
920
933
return ret ;
921
934
}
922
935
923
-
924
936
/*
925
937
* @implemented
926
938
*/
@@ -933,20 +945,6 @@ MessageBoxIndirectW(
933
945
}
934
946
935
947
936
- /*
937
- * @implemented
938
- */
939
- int
940
- WINAPI
941
- MessageBoxW (
942
- IN HWND hWnd ,
943
- IN LPCWSTR lpText ,
944
- IN LPCWSTR lpCaption ,
945
- IN UINT uType )
946
- {
947
- return MessageBoxExW (hWnd , lpText , lpCaption , uType , LANG_NEUTRAL );
948
- }
949
-
950
948
/*
951
949
* @implemented
952
950
*/
@@ -958,7 +956,7 @@ MessageBoxTimeoutA(
958
956
IN LPCSTR lpCaption ,
959
957
IN UINT uType ,
960
958
IN WORD wLanguageId ,
961
- IN DWORD dwTime )
959
+ IN DWORD dwTimeout )
962
960
{
963
961
MSGBOXPARAMSW msgboxW ;
964
962
UNICODE_STRING textW , captionW ;
@@ -985,7 +983,7 @@ MessageBoxTimeoutA(
985
983
msgboxW .lpfnMsgBoxCallback = NULL ;
986
984
msgboxW .dwLanguageId = wLanguageId ;
987
985
988
- ret = MessageBoxTimeoutIndirectW (& msgboxW , (UINT )dwTime );
986
+ ret = MessageBoxTimeoutIndirectW (& msgboxW , (UINT )dwTimeout );
989
987
990
988
if (!IS_INTRESOURCE (textW .Buffer ))
991
989
RtlFreeUnicodeString (& textW );
@@ -1007,7 +1005,7 @@ MessageBoxTimeoutW(
1007
1005
IN LPCWSTR lpCaption ,
1008
1006
IN UINT uType ,
1009
1007
IN WORD wLanguageId ,
1010
- IN DWORD dwTime )
1008
+ IN DWORD dwTimeout )
1011
1009
{
1012
1010
MSGBOXPARAMSW msgbox ;
1013
1011
@@ -1022,7 +1020,7 @@ MessageBoxTimeoutW(
1022
1020
msgbox .lpfnMsgBoxCallback = NULL ;
1023
1021
msgbox .dwLanguageId = wLanguageId ;
1024
1022
1025
- return MessageBoxTimeoutIndirectW (& msgbox , (UINT )dwTime );
1023
+ return MessageBoxTimeoutIndirectW (& msgbox , (UINT )dwTimeout );
1026
1024
}
1027
1025
1028
1026
0 commit comments