28 lines
503 B
C
28 lines
503 B
C
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) 2000, Microsoft Corp. All rights reserved.
|
|
//
|
|
// FILE
|
|
//
|
|
// resource.h
|
|
//
|
|
// SYNOPSIS
|
|
//
|
|
// Resource declarations.
|
|
//
|
|
// MODIFICATION HISTORY
|
|
//
|
|
// 04/13/2000 Original version.
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef RESOURCE_H
|
|
#define RESOURCE_H
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif
|
|
|
|
#define IDR_REGISTRY 101
|
|
|
|
#endif // RESOURCE_H
|