1 | /* $Id: windlgmsg.cpp,v 1.1 1999-07-15 18:03:03 sandervl Exp $ */
|
---|
2 | /*
|
---|
3 | * Win32 dialog message APIs for OS/2
|
---|
4 | *
|
---|
5 | * Copyright 1999 Sander van Leeuwen
|
---|
6 | *
|
---|
7 | *
|
---|
8 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
9 | *
|
---|
10 | */
|
---|
11 | #include <os2win.h>
|
---|
12 | #include <misc.h>
|
---|
13 |
|
---|
14 |
|
---|
15 | //******************************************************************************
|
---|
16 | //******************************************************************************
|
---|
17 | LONG WIN32API SendDlgItemMessageA( HWND arg1, int arg2, UINT arg3, WPARAM arg4, LPARAM arg5)
|
---|
18 | {
|
---|
19 | #ifdef DEBUG
|
---|
20 | WriteLog("USER32: SendDlgItemMessageA\n");
|
---|
21 | #endif
|
---|
22 | return O32_SendDlgItemMessage(arg1, arg2, arg3, arg4, arg5);
|
---|
23 | }
|
---|
24 | //******************************************************************************
|
---|
25 | //******************************************************************************
|
---|
26 | LONG WIN32API SendDlgItemMessageW( HWND arg1, int arg2, UINT arg3, WPARAM arg4, LPARAM arg5)
|
---|
27 | {
|
---|
28 | #ifdef DEBUG
|
---|
29 | WriteLog("USER32: SendDlgItemMessageW\n");
|
---|
30 | #endif
|
---|
31 | return O32_SendDlgItemMessage(arg1, arg2, arg3, arg4, arg5);
|
---|
32 | }
|
---|
33 | //******************************************************************************
|
---|
34 | //******************************************************************************
|
---|
35 | BOOL WIN32API IsDialogMessageA( HWND arg1, LPMSG arg2)
|
---|
36 | {
|
---|
37 | #ifdef DEBUG
|
---|
38 | //// WriteLog("USER32: IsDialogMessage\n");
|
---|
39 | #endif
|
---|
40 | return O32_IsDialogMessage(arg1, arg2);
|
---|
41 | }
|
---|
42 | //******************************************************************************
|
---|
43 | //******************************************************************************
|
---|
44 | BOOL WIN32API IsDialogMessageW( HWND arg1, LPMSG arg2)
|
---|
45 | {
|
---|
46 | #ifdef DEBUG
|
---|
47 | WriteLog("USER32: IsDialogMessageW\n");
|
---|
48 | #endif
|
---|
49 | // NOTE: This will not work as is (needs UNICODE support)
|
---|
50 | return O32_IsDialogMessage(arg1, arg2);
|
---|
51 | }
|
---|
52 | //******************************************************************************
|
---|
53 | //******************************************************************************
|
---|