Changeset 1067 for trunk/include


Ignore:
Timestamp:
Sep 27, 1999, 12:24:51 AM (26 years ago)
Author:
sandervl
Message:

Keyboard msg fixes

Location:
trunk/include
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/thread.h

    r320 r1067  
    1 /* $Id: thread.h,v 1.5 1999-07-17 09:19:15 sandervl Exp $ */
     1/* $Id: thread.h,v 1.6 1999-09-26 22:24:51 sandervl Exp $ */
    22
    33/*
     
    1010#define __WINE_THREAD_H
    1111
     12#ifdef __WIN32OS2__
     13#define TLS_MINIMUM_AVAILABLE   64
     14 #ifndef __OS2_H__
     15  #include "config.h"
     16  #include "winbase.h"
     17 #endif
     18#else
    1219#include "config.h"
    1320#include "winbase.h"
    14 //#include "selectors.h"  /* for SET_FS */
    15 
    16 #ifdef __WIN32OS2__
    17 #define TLS_MINIMUM_AVAILABLE   64
     21#include "selectors.h"  /* for SET_FS */
    1822#endif
    1923
     
    100104    ULONG          hmq;            // Thread message queue
    101105    ULONG          hab;            // Thread Anchor block
     106    BOOL           fMsgTranslated; // TranslateMessage called for this message?
    102107#endif
    103108} THDB;
  • trunk/include/win32type.h

    r999 r1067  
    1 /* $Id: win32type.h,v 1.21 1999-09-21 11:56:04 phaller Exp $ */
     1/* $Id: win32type.h,v 1.22 1999-09-26 22:24:50 sandervl Exp $ */
    22
    33/*
     
    358358#define HDRV16   WORD
    359359#define HINSTANCE16 WORD
     360#define HQUEUE16 WORD
    360361
    361362// other
     
    608609#endif
    609610
     611/* Could this type be considered opaque? */
     612typedef struct {
     613        LPVOID  DebugInfo;
     614        LONG LockCount;
     615        LONG RecursionCount;
     616        HANDLE OwningThread;
     617        HANDLE LockSemaphore;
     618        DWORD Reserved;
     619}CRITICAL_SECTION;
     620
    610621#pragma pack()
    611622
  • trunk/include/winconst.h

    r1056 r1067  
    1 /* $Id: winconst.h,v 1.9 1999-09-26 10:09:25 sandervl Exp $ */
     1/* $Id: winconst.h,v 1.10 1999-09-26 22:24:51 sandervl Exp $ */
    22
    33/*
     
    220220#define SB_RIGHT_W            7
    221221#define SB_ENDSCROLL_W        8
     222
     223/* WM_SYSCOMMAND parameters */
     224#define SC_SIZE_W         0xf000
     225#define SC_MOVE_W         0xf010
     226#define SC_MINIMIZE_W     0xf020
     227#define SC_MAXIMIZE_W     0xf030
     228#define SC_NEXTWINDOW_W   0xf040
     229#define SC_PREVWINDOW_W   0xf050
     230#define SC_CLOSE_W        0xf060
     231#define SC_VSCROLL_W      0xf070
     232#define SC_HSCROLL_W      0xf080
     233#define SC_MOUSEMENU_W    0xf090
     234#define SC_KEYMENU_W      0xf100
     235#define SC_ARRANGE_W      0xf110
     236#define SC_RESTORE_W      0xf120
     237#define SC_TASKLIST_W     0xf130
     238#define SC_SCREENSAVE_W   0xf140
     239#define SC_HOTKEY_W       0xf150
  • trunk/include/wprocess.h

    r953 r1067  
    1 /* $Id: wprocess.h,v 1.7 1999-09-15 23:29:09 sandervl Exp $ */
     1/* $Id: wprocess.h,v 1.8 1999-09-26 22:24:51 sandervl Exp $ */
    22/*
    33 * Process help functions
     
    1414#define WIN32_TIBSEL
    1515
    16 #ifdef OS2_INCLUDED
    17 typedef DWORD TEB;
    18 typedef DWORD THDB;
    19 #else
     16#ifndef OS2_INCLUDED
    2017#include <winprocess.h>
     18#endif
    2119#include <thread.h>
    22 #endif
    2320
    2421TEB *InitializeTIB(BOOL fMainThread = FALSE);
Note: See TracChangeset for help on using the changeset viewer.