/* $Id: wprocess.h,v 1.4 1999-06-20 12:46:34 sandervl Exp $ */ /* * Process help functions * * Copyright (C) 1999 Sander van Leeuwen * * Project Odin Software License can be found in LICENSE.TXT * */ #ifndef _WPROCESS_H__ #define _WPROCESS_H__ #define WIN32_TIBSEL #ifdef OS2_INCLUDED typedef DWORD TEB; #else #include #include #endif TEB *InitializeTIB(BOOL fMainThread = FALSE); void DestroyTIB(); void WIN32API RestoreOS2TIB(); void WIN32API SetWin32TIB(); extern BOOL fExeStarted; #endif