You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
692 B
31 lines
692 B
#if !defined(SERVICES__Globals_inl__INCLUDED)
|
|
#define SERVICES__Globals_inl__INCLUDED
|
|
#pragma once
|
|
|
|
#include "Thread.h"
|
|
|
|
//------------------------------------------------------------------------------
|
|
inline GdiCache *
|
|
GetGdiCache()
|
|
{
|
|
return GetThread()->GetGdiCache();
|
|
}
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
inline BufferManager *
|
|
GetBufferManager()
|
|
{
|
|
return GetThread()->GetBufferManager();
|
|
}
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
inline ComManager *
|
|
GetComManager()
|
|
{
|
|
return GetThread()->GetComManager();
|
|
}
|
|
|
|
|
|
#endif // SERVICES__Globals_inl__INCLUDED
|