bd28cd4d64
Files correlati : xvaga.dll Ricompilazione Demo : [ ] Commento : Supporto per controlli nativi trasparenti git-svn-id: svn://10.65.10.50/trunk@17381 c028cbd2-c16b-5b4b-a496-9718f37d4682
26 lines
844 B
C
Executable File
26 lines
844 B
C
Executable File
/****************************************************************************
|
|
*
|
|
* Copyright (c) 1989 - 2002 Providence Software Solutions, Inc. All rights reserved.
|
|
* May be used only in accordance with a valid Source Code License
|
|
* Agreement with Providence Software Solutions, Inc.
|
|
*
|
|
* $RCSfile: xvt_vers.h,v $
|
|
* $Revision: 1.1 $
|
|
*
|
|
* Purpose: XVT PTK version definitions.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef XVT_INCL_VERS
|
|
#define XVT_INCL_VERS
|
|
|
|
#define XVT_PTK_VERSION_MAJOR 5
|
|
#define XVT_PTK_VERSION_MINOR 6
|
|
#define XVT_PTK_VERSION_PATCH 1
|
|
|
|
#define XVT_PTK_VERSION (XVT_MAKE_VERSION(XVT_PTK_VERSION_MAJOR,XVT_PTK_VERSION_MINOR,XVT_PTK_VERSION_PATCH))
|
|
|
|
#define XVT_CHECK_VERSION(vma,vmi,vpa) XVT_PTK_VERSION>=XVT_MAKE_VERSION(vma,vmi,vpa)
|
|
|
|
#endif /* XVT_INCL_VERS */
|