/usr/include/cdk/cdk_version.h is in libcdk5-dev 5.0.20060507-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | /*
* $Id: cdk_version.hin,v 1.1 2002/07/20 00:26:36 tom Exp $
*/
#ifndef CDK_VERSION_H
#define CDK_VERSION_H
#ifdef __cplusplus
extern "C" {
#endif
#define CDK_VERSION_MAJOR "5"
#define CDK_VERSION_MINOR "0"
#define CDK_VERSION_PATCH "20060507"
/*
* Runtime to return the same version information.
*/
char * CDKVersion (void);
#ifdef __cplusplus
}
#endif
#endif /* CDK_VERSION_H */
|