56 lines
1 KiB
C
56 lines
1 KiB
C
|
/*++
|
||
|
|
||
|
Copyright (c) 1996 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
help.h
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
Help related declarations
|
||
|
|
||
|
Environment:
|
||
|
|
||
|
Windows NT fax driver
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
07/30/96 -davidx-
|
||
|
Created it.
|
||
|
|
||
|
dd-mm-yy -author-
|
||
|
description
|
||
|
|
||
|
--*/
|
||
|
|
||
|
#ifndef _HELP_H_
|
||
|
#define _HELP_H_
|
||
|
|
||
|
//
|
||
|
// Name of the help file for the fax driver
|
||
|
//
|
||
|
|
||
|
#define HELP_FILENAME TEXT("fax.hlp")
|
||
|
|
||
|
//
|
||
|
// Help indices
|
||
|
//
|
||
|
|
||
|
#define IDH_BILLING_CODE 2002
|
||
|
#define IDH_IMAGE_QUALITY 2025
|
||
|
#define IDH_LANDSCAPE 2026
|
||
|
#define IDH_PAPER_SIZE 2037
|
||
|
#define IDH_PORTRAIT 2038
|
||
|
#define IDH_SEND_ASAP 2046
|
||
|
#define IDH_SEND_AT_CHEAP 2047
|
||
|
#define IDH_SEND_AT_TIME 2048
|
||
|
#define IDH_EMAIL 2049
|
||
|
#define IDH_FAX_SEND_GRP 2075
|
||
|
#define IDH_DEFAULT_PRINT_SETUP_GRP 2070
|
||
|
#define IDH_ORIENTATION 2062
|
||
|
#define IDH_SEND_AT_TIME 2048
|
||
|
|
||
|
#endif // !_HELP_H_
|
||
|
|