Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TWin32SplashThread.h
Go to the documentation of this file.
1 // @(#)root/winnt:$Id$
2 // Author: Bertrand Bellenot 14/01/04
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2001, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TWin32SplashThread
13 #define ROOT_TWin32SplashThread
14 
15 #include "Rtypes.h"
16 
17 ///////////////////////////////////////////////////////////////////////////////
18 class TWin32SplashThread {
19 public:
20  void *fHandle; // splash thread handle
21 
22  TWin32SplashThread(Bool_t extended);
23  ~TWin32SplashThread();
24 };
25 
26 R__EXTERN TWin32SplashThread *gSplash;
27 
28 #endif