36 lines
701 B
C
36 lines
701 B
C
|
/*++
|
||
|
|
||
|
Microsoft Windows
|
||
|
Copyright (C) Microsoft Corporation, 1981 - 1999
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
helparr.h
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
#defines for context help
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Rahul Thombre (RahulTh) 10/13/1998
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
10/13/1998 RahulTh Created this module.
|
||
|
|
||
|
--*/
|
||
|
|
||
|
|
||
|
#ifndef __HELPARR_H__
|
||
|
#define __HELPARR_H__
|
||
|
|
||
|
#define IDH_DISABLEHELP ((DWORD)-1)
|
||
|
#define IDH_SEND_BUTTON 202 // Untitled: "Send" (Button)
|
||
|
#define IDH_SETTINGS_BUTTON 203 // Untitled: "Settings" (Button)
|
||
|
#define IDH_CLOSE_BUTTON 204 // Untitled: "Close" (Button)
|
||
|
#define IDH_HELP_BUTTON 205 // Untitled: "Help" (Button)
|
||
|
#define IDH_DEVICELIST 301 // device list in device chooser dlg
|
||
|
|
||
|
#endif //__HELPARR_H__
|