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.
19 lines
635 B
19 lines
635 B
// ---------------------------------------------------------------------------
|
|
// RESOURCE.H
|
|
// ---------------------------------------------------------------------------
|
|
// Copyright (c) 1999 Microsoft Corporation
|
|
//
|
|
// ---------------------------------------------------------------------------
|
|
#pragma once
|
|
|
|
#define CCHMAX_STRINGRES 512
|
|
|
|
// String Resource IDs
|
|
#define IDS_FIRST 1000
|
|
|
|
#define IDS_PRODUCTID (IDS_FIRST + 1)
|
|
#define IDS_COMPANY (IDS_FIRST + 2)
|
|
#define IDS_PHONE (IDS_FIRST + 3)
|
|
#define IDS_URL (IDS_FIRST + 4)
|
|
#define IDS_INSTRUCTIONS (IDS_FIRST + 5)
|
|
|