Changeset 1054 for trunk/src/user32/old


Ignore:
Timestamp:
Sep 25, 1999, 9:07:34 PM (26 years ago)
Author:
sandervl
Message:

Compilation fixes

Location:
trunk/src/user32/old
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/old/Makefile

    r950 r1054  
    1 # $Id: Makefile,v 1.3 1999-09-15 23:20:36 sandervl Exp $
     1# $Id: Makefile,v 1.4 1999-09-25 19:07:32 sandervl Exp $
    22
    33#
     
    77#
    88
    9 PDWIN32_INCLUDE = ..\..\include
    10 PDWIN32_LIB = ..\..\lib
    11 PDWIN32_BIN = ..\..\bin
    12 PDWIN32_TOOLS = ..\..\tools\bin
     9PDWIN32_INCLUDE = ..\..\..\include\old
     10PDWIN32_LIB = ..\..\..\lib
     11PDWIN32_BIN = .
     12PDWIN32_TOOLS = ..\..\..\tools\bin
    1313
    1414
     
    1616
    1717
    18 CFLAGS = $(CFLAGS) -I$(PDWIN32_INCLUDE)
    19 CXXFLAGS = $(CXXFLAGS) -I$(PDWIN32_INCLUDE)
     18CFLAGS = $(CFLAGS) -I$(PDWIN32_INCLUDE) -I$(PDWIN32_INCLUDE)\..\win
     19CXXFLAGS = $(CXXFLAGS) -I$(PDWIN32_INCLUDE) -I$(PDWIN32_INCLUDE)\..\win
    2020
    2121
     
    3535        $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \
    3636              $(PDWIN32_LIB)/pmwinx.lib $(PDWIN32_LIB)/gdi32.lib \
    37               $(PDWIN32_LIB)/kernel32.lib $(PDWIN32_LIB)/libuls.lib \
     37              ..\..\kernel32\old\kernel32.lib $(PDWIN32_LIB)/libuls.lib \
    3838              $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O)
    39         $(CP) $@ $(PDWIN32_BIN)
    4039
    4140
    4241$(TARGET).lib: $(TARGET)exp.def
    4342        $(IMPLIB) $(IMPLIBFLAGS) $@ $(TARGET)exp.def
    44         $(CP) $@ $(PDWIN32_LIB)
    4543
    4644$(TARGET)exp.def: $(TARGET).def
  • trunk/src/user32/old/USER32.DEF

    r950 r1054  
    1 ; $Id: USER32.DEF,v 1.3 1999-09-15 23:20:37 sandervl Exp $
     1; $Id: USER32.DEF,v 1.4 1999-09-25 19:07:32 sandervl Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    615615    NativeDlgBoxIP             = _NativeDlgBoxIP@24          @2003
    616616    NativeCreateDlgIP          = _NativeCreateDlgIP@24       @2004
     617
     618    Win32ToOS2Handle__FUl      =  Win32ToOS2Handle__FUl      @2006
  • trunk/src/user32/old/dlgconvert.cpp

    r950 r1054  
    1 /* $Id: dlgconvert.cpp,v 1.3 1999-09-15 23:20:38 sandervl Exp $ */
     1/* $Id: dlgconvert.cpp,v 1.4 1999-09-25 19:07:33 sandervl Exp $ */
    22
    33/*
     
    4444#include "nameid.h"
    4545#include "dlgconvert.h"
    46 #include "..\pe2lx\dialog.h"
     46#include "..\..\pe2lx\dialog.h"
    4747
    4848#ifndef BS_TEXT /*PLF Sun  97-06-22 03:07:13  not in watcom's os/2 header */
  • trunk/src/user32/old/initterm.cpp

    r950 r1054  
    1 /* $Id: initterm.cpp,v 1.3 1999-09-15 23:20:38 sandervl Exp $ */
     1/* $Id: initterm.cpp,v 1.4 1999-09-25 19:07:33 sandervl Exp $ */
    22
    33/*
     
    3434#include <misc.h>       /*PLF Wed  98-03-18 23:18:29*/
    3535#include <win32type.h>
    36 #include <odinlx.h>
    3736#include <wndclass.h>
    3837#include <spy.h>
     
    7877         CheckVersionFromHMOD(PE2LX_VERSION, hModule); /*PLF Wed  98-03-18 05:28:48*/
    7978
    80          if(RegisterLxDll(hModule, 0, 0) == FALSE)
    81                 return 0UL;
    82 
    8379         /*******************************************************************/
    8480         /* A DosExitList routine must be used to clean up if runtime calls */
     
    10197         break;
    10298      case 1 :
    103          UnregisterLxDll(hModule);
    10499         break;
    105100      default  :
  • trunk/src/user32/old/user32.cpp

    r950 r1054  
    1 /* $Id: user32.cpp,v 1.3 1999-09-15 23:20:40 sandervl Exp $ */
     1/* $Id: user32.cpp,v 1.4 1999-09-25 19:07:33 sandervl Exp $ */
    22
    33/*
     
    7272
    7373
     74//******************************************************************************
     75//******************************************************************************
     76#ifdef DEBUG
     77void PrintWindowStyle(DWORD dwStyle, DWORD dwExStyle)
     78{
     79 char style[256] = "";
     80 char exstyle[256] = "";
     81
     82  /* Window styles */
     83  if(dwStyle & WS_CHILD)
     84        strcat(style, "WS_CHILD ");
     85  if(dwStyle & WS_POPUP)
     86        strcat(style, "WS_POPUP ");
     87  if(dwStyle & WS_VISIBLE)
     88        strcat(style, "WS_VISIBLE ");
     89  if(dwStyle & WS_DISABLED)
     90        strcat(style, "WS_DISABLED ");
     91  if(dwStyle & WS_CLIPSIBLINGS)
     92        strcat(style, "WS_CLIPSIBLINGS ");
     93  if(dwStyle & WS_CLIPCHILDREN)
     94        strcat(style, "WS_CLIPCHILDREN ");
     95  if(dwStyle & WS_MAXIMIZE)
     96        strcat(style, "WS_MAXIMIZE ");
     97  if(dwStyle & WS_MINIMIZE)
     98        strcat(style, "WS_MINIMIZE ");
     99  if(dwStyle & WS_GROUP)
     100        strcat(style, "WS_GROUP ");
     101  if(dwStyle & WS_TABSTOP)
     102        strcat(style, "WS_TABSTOP ");
     103
     104  if(dwStyle & WS_CAPTION)
     105        strcat(style, "WS_CAPTION ");
     106  if(dwStyle & WS_DLGFRAME)
     107        strcat(style, "WS_DLGFRAME ");
     108  if(dwStyle & WS_BORDER)
     109        strcat(style, "WS_BORDER ");
     110
     111  if(dwStyle & WS_VSCROLL)
     112        strcat(style, "WS_VSCROLL ");
     113  if(dwStyle & WS_HSCROLL)
     114        strcat(style, "WS_HSCROLL ");
     115  if(dwStyle & WS_SYSMENU)
     116        strcat(style, "WS_SYSMENU ");
     117  if(dwStyle & WS_THICKFRAME)
     118        strcat(style, "WS_THICKFRAME ");
     119  if(dwStyle & WS_MINIMIZEBOX)
     120        strcat(style, "WS_MINIMIZEBOX ");
     121  if(dwStyle & WS_MAXIMIZEBOX)
     122        strcat(style, "WS_MAXIMIZEBOX ");
     123
     124  if(dwExStyle & WS_EX_DLGMODALFRAME)
     125        strcat(exstyle, "WS_EX_DLGMODALFRAME ");
     126  if(dwExStyle & WS_EX_ACCEPTFILES)
     127        strcat(exstyle, "WS_EX_ACCEPTFILES ");
     128  if(dwExStyle & WS_EX_NOPARENTNOTIFY)
     129        strcat(exstyle, "WS_EX_NOPARENTNOTIFY ");
     130  if(dwExStyle & WS_EX_TOPMOST)
     131        strcat(exstyle, "WS_EX_TOPMOST ");
     132  if(dwExStyle & WS_EX_TRANSPARENT)
     133        strcat(exstyle, "WS_EX_TRANSPARENT ");
     134
     135  if(dwExStyle & WS_EX_MDICHILD)
     136        strcat(exstyle, "WS_EX_MDICHILD ");
     137  if(dwExStyle & WS_EX_TOOLWINDOW)
     138        strcat(exstyle, "WS_EX_TOOLWINDOW ");
     139  if(dwExStyle & WS_EX_WINDOWEDGE)
     140        strcat(exstyle, "WS_EX_WINDOWEDGE ");
     141  if(dwExStyle & WS_EX_CLIENTEDGE)
     142        strcat(exstyle, "WS_EX_CLIENTEDGE ");
     143  if(dwExStyle & WS_EX_CONTEXTHELP)
     144        strcat(exstyle, "WS_EX_CONTEXTHELP ");
     145  if(dwExStyle & WS_EX_RIGHT)
     146        strcat(exstyle, "WS_EX_RIGHT ");
     147  if(dwExStyle & WS_EX_LEFT)
     148        strcat(exstyle, "WS_EX_LEFT ");
     149  if(dwExStyle & WS_EX_RTLREADING)
     150        strcat(exstyle, "WS_EX_RTLREADING ");
     151  if(dwExStyle & WS_EX_LTRREADING)
     152        strcat(exstyle, "WS_EX_LTRREADING ");
     153  if(dwExStyle & WS_EX_LEFTSCROLLBAR)
     154        strcat(exstyle, "WS_EX_LEFTSCROLLBAR ");
     155  if(dwExStyle & WS_EX_RIGHTSCROLLBAR)
     156        strcat(exstyle, "WS_EX_RIGHTSCROLLBAR ");
     157  if(dwExStyle & WS_EX_CONTROLPARENT)
     158        strcat(exstyle, "WS_EX_CONTROLPARENT ");
     159  if(dwExStyle & WS_EX_STATICEDGE)
     160        strcat(exstyle, "WS_EX_STATICEDGE ");
     161  if(dwExStyle & WS_EX_APPWINDOW)
     162        strcat(exstyle, "WS_EX_APPWINDOW ");
     163
     164  dprintf(("Window style:   %x %s", dwStyle, style));
     165  dprintf(("Window exStyle: %x %s", dwExStyle, exstyle));
     166}
     167#endif
     168
    74169
    75170//******************************************************************************
     
    551646 HWND hwnd;
    552647 Win32WindowProc *window = NULL;
     648
     649#ifdef DEBUG
     650    PrintWindowStyle(dwStyle, dwExStyle);
     651#endif
    553652
    554653  /* @@@PH 98/06/12 CreateWindow crashes somewhere in Open32 */
     
    10901189//******************************************************************************
    10911190//******************************************************************************
    1092 HCURSOR WIN32API SetCursor( HCURSOR arg1)
    1093 {
    1094 #ifdef DEBUG
    1095     WriteLog("USER32:  SetCursor\n");
    1096 #endif
    1097     return O32_SetCursor(arg1);
     1191HCURSOR WIN32API SetCursor( HCURSOR hcur)
     1192{
     1193 HCURSOR rc;
     1194
     1195    rc = O32_SetCursor(hcur);
     1196    dprintf(("USER32: SetCursor %x (prev %x (%x))\n", hcur, rc, O32_GetCursor()));
     1197    return rc;
    10981198}
    10991199//******************************************************************************
     
    12611361HWND WIN32API ChildWindowFromPoint( HWND arg1, POINT  arg2)
    12621362{
    1263 #ifdef DEBUG
    1264     WriteLog("USER32:  ChildWindowFromPoint\n");
    1265 #endif
    1266     return O32_ChildWindowFromPoint(arg1, arg2);
     1363 HWND rc;
     1364
     1365    rc = O32_ChildWindowFromPoint(arg1, arg2);
     1366#ifdef DEBUG
     1367    WriteLog("USER32:  ChildWindowFromPoint %x returned %x\n", arg1, rc);
     1368#endif
     1369    return rc;
    12671370}
    12681371/*****************************************************************************
  • trunk/src/user32/old/user32.h

    r950 r1054  
    1 /* $Id: user32.h,v 1.3 1999-09-15 23:20:41 sandervl Exp $ */
     1/* $Id: user32.h,v 1.4 1999-09-25 19:07:34 sandervl Exp $ */
    22
    33/*****************************************************************************
     
    1414#include <stdlib.h>
    1515#include <string.h>
     16#include <nameid.h>
    1617
    1718inline void ConvertFontAW(LOGFONTA *fa, LOGFONTW *fw)
  • trunk/src/user32/old/wndproc.cpp

    r950 r1054  
    1 /* $Id: wndproc.cpp,v 1.3 1999-09-15 23:20:42 sandervl Exp $ */
     1/* $Id: wndproc.cpp,v 1.4 1999-09-25 19:07:34 sandervl Exp $ */
    22
    33/*
     
    2525#include "hooks.h"
    2626#include "wndmsg.h"
     27
     28HWND Win32ToOS2Handle(HWND hwndWin32)
     29{
     30  return hwndWin32;
     31}
    2732
    2833void NotifyParent(HWND hwnd, UINT Msg, WPARAM wParam, LPARAM lParam)
Note: See TracChangeset for help on using the changeset viewer.