Source code of Windows XP (NT5)
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) 1995-1997 Microsoft Corporation
Module Name:
hwprof.h
Abstract:
Public declarations for the Hardware Profiles dialog.
Author:
Paula Tomlinson (paulat) 8-22-1995
Revision History:
22-Aug-1995 paulat Creation and initial implementation.
17-Oc-1997 scotthal Split public declarations into their own header file
--*/ #ifndef _SYSDM_HWPROF_H_
#define _SYSDM_HWPROF_H_
//
// Public function prototypes
//
INT_PTR APIENTRY HardwareProfilesDlg( IN HWND hDlg, IN UINT uMessage, IN WPARAM wParam, IN LPARAM lParam );
INT_PTR APIENTRY CopyProfileDlg( IN HWND hDlg, IN UINT uMessage, IN WPARAM wParam, IN LPARAM lParam );
INT_PTR APIENTRY RenameProfileDlg( IN HWND hDlg, IN UINT uMessage, IN WPARAM wParam, IN LPARAM lParam );
INT_PTR APIENTRY GeneralProfileDlg( IN HWND hDlg, IN UINT uMessage, IN WPARAM wParam, IN LPARAM lParam );
#endif // _SYSDM_HWPROF_H_
|