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.
56 lines
789 B
56 lines
789 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_REMOTE_ADMIN 256
|
|
#define IDS_REMOTE_ADMIN_FAILED 257
|
|
#define IDS_NAME_TOO_LONG 258
|
|
|
|
//
|
|
// Dialog resource IDs
|
|
//
|
|
|
|
#define IDD_SELECT_FAXSERVER 100
|
|
#define IDD_CONNECT_FAXSERVER 101
|
|
|
|
#define IDC_STATIC -1
|
|
#define IDC_FAXSERVER_NAME 256
|
|
|
|
//
|
|
// Icon resource IDs
|
|
//
|
|
|
|
#define IDI_FAX_REMOTE_ADMIN 256
|
|
|
|
#endif // !_RESOURCE_H_
|
|
|