Leaked source code of windows server 2003
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.
|
|
// --------------------------------------------------------------------------
// Module Name: ThemeService.h
//
// Copyright (c) 2001, Microsoft Corporation
//
// This file contains functions that are called from the shell services DLL
// to interact with the theme service.
//
// History: 2001-01-02 vtan created
// --------------------------------------------------------------------------
#ifndef _ThemeService_
#define _ThemeService_
// --------------------------------------------------------------------------
// CThemeService
//
// Purpose: Class that implements entry points for the common shell
// service to invoke theme service functionality.
//
// History: 2001-01-02 vtan created
// --------------------------------------------------------------------------
class CThemeService { public: static BOOL Main (DWORD dwReason); static NTSTATUS RegisterServer (void); static NTSTATUS UnregisterServer (void);
private: static NTSTATUS _ProcessAttach(); };
#endif /* _ThemeService_ */
|