44 lines
681 B
C
44 lines
681 B
C
|
//+-------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
//
|
||
|
// Copyright (C) SCM Microsystems, 1998 - 1999
|
||
|
//
|
||
|
// File: srvers.h
|
||
|
//
|
||
|
//--------------------------------------------------------------------------
|
||
|
|
||
|
/*++
|
||
|
|
||
|
Copyright (c) 1998 SCM Microsystems, Inc.
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
SRVers.h
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
header file for version information
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Andreas Straub
|
||
|
|
||
|
Environment:
|
||
|
|
||
|
Win 95, Win NT
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
AS 1.00 2/06/1998 Initial Version
|
||
|
|
||
|
--*/
|
||
|
#if !defined( __SRVERS_H__ )
|
||
|
#define __SRVERS_H__
|
||
|
|
||
|
#define SCMSTCS_VERSION_STR "1.06"
|
||
|
#define SCMSTCS_MAJOR_VERSION 1
|
||
|
#define SCMSTCS_MINOR_VERSION 6
|
||
|
|
||
|
#endif // __SRVERS_H__
|