source: trunk/include/wprocess.h@ 4657

Last change on this file since 4657 was 4657, checked in by sandervl, 25 years ago

header updates for TEB changes

File size: 1.2 KB
RevLine 
[4657]1/* $Id: wprocess.h,v 1.18 2000-11-21 11:33:59 sandervl Exp $ */
[124]2/*
3 * Process help functions
4 *
5 * Copyright (C) 1999 Sander van Leeuwen
6 *
7 * Project Odin Software License can be found in LICENSE.TXT
8 *
9 */
10
11#ifndef _WPROCESS_H__
12#define _WPROCESS_H__
13
[130]14#define WIN32_TIBSEL
[125]15
[1067]16#ifndef OS2_INCLUDED
[1887]17#include <winprocess.h>
18#else
[2086]19#include <winconst.h>
[1887]20typedef ULONG PDB;
[1067]21#endif
[127]22#include <thread.h>
23
24TEB *InitializeTIB(BOOL fMainThread = FALSE);
[124]25void DestroyTIB();
26
[281]27void WIN32API RestoreOS2TIB();
28USHORT WIN32API SetWin32TIB();
[1891]29void SetPDBInstance(HINSTANCE hInstance);
[127]30
31extern BOOL fExeStarted;
[953]32extern BOOL fFreeLibrary;
[1222]33extern BOOL fIsOS2Image; //TRUE -> Odin32 OS/2 application (not converted!)
34 //FALSE -> otherwise
[4232]35extern BOOL fExitProcess;
[127]36
[281]37//Flat pointer to thread TIB structure
38extern DWORD *TIBFlatPtr;
39
[1885]40extern PDB ProcessPDB;
41
42#define NtCurrentTeb GetThreadTEB
[320]43TEB *WIN32API GetThreadTEB();
[4657]44TEB *WIN32API GetTEBFromThreadId(ULONG threadId);
45TEB *WIN32API GetTEBFromThreadHandle(HANDLE hThread);
[320]46
[1887]47#ifndef OS2_INCLUDED
48inline PDB * PROCESS_Current(void)
[1885]49{
50 return NtCurrentTeb()->process;
51}
[1887]52#endif
[1885]53
[4234]54ULONG InitCommandLine(const char *pszPeExe);
55
56#endif
Note: See TracBrowser for help on using the repository browser.