Ignore:
Timestamp:
Jul 14, 1999, 10:35:38 AM (26 years ago)
Author:
sandervl
Message:

Very preliminary code for Open32 replacement

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/new/win32dlg.h

    r4 r300  
    1 /* $Id: win32dlg.h,v 1.1 1999-05-24 20:20:04 ktk Exp $ */
    2 
     1/* $Id: win32dlg.h,v 1.2 1999-07-14 08:35:37 sandervl Exp $ */
     2/*
     3 * Win32 Dialog Code for OS/2
     4 *
     5 *
     6 * Copyright 1998 Sander van Leeuwen (sandervl@xs4all.nl)
     7 *
     8 *
     9 * Project Odin Software License can be found in LICENSE.TXT
     10 *
     11 */
    312#ifndef __WIN32DLG_H__
    413#define __WIN32DLG_H__
    514
    6 #include "win32wnd.h"
     15#include <win32wnd.h>
    716
    817#ifdef __cplusplus
    918
    10 class Win32Dialog : Win32Window
     19class Win32Dialog : public Win32Window
    1120{
    1221public:
    13          Win32Dialog(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
     22         Win32Dialog();
    1423virtual ~Win32Dialog();
    1524
    16      MRESULT    ProcessDlgMessage(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
     25virtual  ULONG  MsgOS2Create(HWND hwndOS2, ULONG initParam);
    1726
    18 virtual  BOOL   SetWindowLong(int index, ULONG value);
    19 virtual  ULONG  GetWindowLong(int index);
     27virtual  LONG   SetWindowLongA(int index, ULONG value);
     28virtual  ULONG  GetWindowLongA(int index);
    2029
    2130protected:
    2231        // values normally contained in the standard dialog words
    23     WINDLGPROC  Win32DlgProc;   //DWL_WNDPROC
     32      DLGPROC   Win32DlgProc;   //DWL_WNDPROC
    2433        ULONG   msgResult;      //DWL_MSGRESULT
    2534        ULONG   userDlgData;    //DWL_USER
    2635
    2736private:
    28 
    29 
    3037};
    3138
Note: See TracChangeset for help on using the changeset viewer.