mirror of https://github.com/tongzx/nt5src
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.
46 lines
632 B
46 lines
632 B
/*++
|
|
|
|
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_
|
|
|