mirror of https://github.com/lianthony/NT4.0
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.
29 lines
524 B
29 lines
524 B
#ifndef _TSVCCACHE_HXX_INCLUDED_
|
|
#define _TSVCCACHE_HXX_INCLUDED_
|
|
|
|
#ifndef dllexp
|
|
#define dllexp __declspec( dllexport )
|
|
#endif
|
|
|
|
class TSVC_CACHE
|
|
{
|
|
public:
|
|
|
|
dllexp TSVC_CACHE( DWORD dwServiceId )
|
|
{ m_dwServiceId = dwServiceId; }
|
|
|
|
dllexp ~TSVC_CACHE( VOID ) {}
|
|
|
|
dllexp BOOL IsValid( VOID ) const
|
|
{ return ( TRUE); }
|
|
|
|
DWORD GetServiceId( VOID ) const
|
|
{ return( m_dwServiceId ); }
|
|
|
|
private:
|
|
|
|
DWORD m_dwServiceId;
|
|
};
|
|
|
|
|
|
#endif /* included */
|