30 lines
560 B
C
30 lines
560 B
C
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) 1998-1999 Microsoft Corporation
|
|
//
|
|
// Module Name:
|
|
// InterfaceVer.h
|
|
//
|
|
// Module Description:
|
|
// Interface version defines
|
|
//
|
|
// Implementation File:
|
|
//
|
|
// Author:
|
|
// Galen Barbee (GalenB) 18-Nov-1998
|
|
//
|
|
// Revision History:
|
|
//
|
|
// Notes:
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _INTERFACEVER_H_
|
|
#define _INTERFACEVER_H_
|
|
|
|
#define MAJORINTERFACEVER 1
|
|
|
|
#define MINORINTERFACEVER 0
|
|
|
|
#endif // _INTERFACEVER_H_
|