source: trunk/include/wprocess.h@ 1222

Last change on this file since 1222 was 1222, checked in by sandervl, 26 years ago

* empty log message *

File size: 792 bytes
Line 
1/* $Id: wprocess.h,v 1.9 1999-10-09 13:31:44 sandervl Exp $ */
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
14#define WIN32_TIBSEL
15
16#ifndef OS2_INCLUDED
17#include <winprocess.h>
18#endif
19#include <thread.h>
20
21TEB *InitializeTIB(BOOL fMainThread = FALSE);
22void DestroyTIB();
23
24void WIN32API RestoreOS2TIB();
25USHORT WIN32API SetWin32TIB();
26
27extern BOOL fExeStarted;
28extern BOOL fFreeLibrary;
29extern BOOL fIsOS2Image; //TRUE -> Odin32 OS/2 application (not converted!)
30 //FALSE -> otherwise
31
32//Flat pointer to thread TIB structure
33extern DWORD *TIBFlatPtr;
34
35TEB *WIN32API GetThreadTEB();
36THDB *WIN32API GetThreadTHDB();
37
38#endif
Note: See TracBrowser for help on using the repository browser.