00001 // @(#)root/winnt:$Id: TWin32SplashThread.h 20882 2007-11-19 11:31:26Z rdm $ 00002 // Author: Bertrand Bellenot 14/01/04 00003 00004 /************************************************************************* 00005 * Copyright (C) 1995-2001, Rene Brun and Fons Rademakers. * 00006 * All rights reserved. * 00007 * * 00008 * For the licensing terms see $ROOTSYS/LICENSE. * 00009 * For the list of contributors see $ROOTSYS/README/CREDITS. * 00010 *************************************************************************/ 00011 00012 #ifndef ROOT_TWin32SplashThread 00013 #define ROOT_TWin32SplashThread 00014 00015 #ifndef ROOT_Rtypes 00016 #include "Rtypes.h" 00017 #endif 00018 00019 /////////////////////////////////////////////////////////////////////////////// 00020 class TWin32SplashThread { 00021 public: 00022 void *fHandle; // splash thread handle 00023 00024 TWin32SplashThread(Bool_t extended); 00025 ~TWin32SplashThread(); 00026 }; 00027 00028 R__EXTERN TWin32SplashThread *gSplash; 00029 00030 #endif