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.
|
|
/*++
Copyright (C) Microsoft Corporation
Module Name:
hwprof.h
Abstract:
header file for hwprof.cpp
Author:
William Hsieh (williamh) created
Revision History:
--*/ class CHwProfile; class CHwProfileList;
class CHwProfileList { public: CHwProfileList() : m_pDevice(NULL), m_CurHwProfile(0), m_CurHwProfileIndex(0) {} ~CHwProfileList(); BOOL Create(CDevice* pDevice, DWORD ConfigFlags = 0); BOOL GetFirst(CHwProfile** pphwpf, PVOID& Context); BOOL GetNext(CHwProfile** pphwpf, PVOID& Context); BOOL GetCurrentHwProfile(CHwProfile** pphwpf); int GetCount() { return m_listProfile.GetCount(); }
private: CList<CHwProfile*,CHwProfile* > m_listProfile; CDevice* m_pDevice; ULONG m_CurHwProfile; int m_CurHwProfileIndex; };
class CHwProfile { public: CHwProfile(int Index, PHWPROFILEINFO phwpfInfo, CDevice* pDevice, DWORD hwpfFlags); ULONG GetHwProfile() { return m_hwpfInfo.HWPI_ulHWProfile; } void SetEnablePending() { m_EnablePending = TRUE; } void ResetEnablePending() { m_EnablePending = FALSE; } void SetDisablePending() { m_DisablePending = TRUE; } void ResetDisablePending() { m_DisablePending = FALSE; } BOOL IsEnablePending() { return m_EnablePending; } BOOL IsDisablePending() { return m_DisablePending; }
private: DWORD m_Index; HWPROFILEINFO m_hwpfInfo; DWORD m_Flags; CDevice* m_pDevice; BOOL m_EnablePending; BOOL m_DisablePending; };
|