47 lines
632 B
C
47 lines
632 B
C
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
resource.h
|
|
|
|
Abstract:
|
|
|
|
Declaration of resource ID constants
|
|
|
|
Environment:
|
|
|
|
Windows NT fax configuration applet
|
|
|
|
Revision History:
|
|
|
|
02/22/96 -davidx-
|
|
Created it.
|
|
|
|
dd-mm-yy -author-
|
|
description
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _RESOURCE_H_
|
|
#define _RESOURCE_H_
|
|
|
|
//
|
|
// String resource IDs
|
|
//
|
|
|
|
#define IDS_FAX 101
|
|
#define IDS_CONFIG_FAX 102
|
|
#define IDS_FAX_TITLE 103
|
|
|
|
//
|
|
// Icon resource IDs
|
|
//
|
|
|
|
#define IDI_FAX 201
|
|
|
|
#endif // !_RESOURCE_H_
|
|
|