DCL 3.7.4
Loading...
Searching...
No Matches
include/dcl/Version.h
Go to the documentation of this file.
1#ifndef __DCL_VERSION_H__
2#define __DCL_VERSION_H__ 20260121
3
4#ifndef __BUILD_TIMESTAMP__
5#define __BUILD_TIMESTAMP__ "2026-03-01T09:48:14+09:00"
6#endif
7
8#define __VERSION_MAJOR(_x) (_x / 1000000)
9#define __VERSION_MINOR(_x) ((_x / 1000) % 1000)
10#define __VERSION_MAJOR_MINOR(_x) (_x / 1000)
11
12/* DCL Library Version */
13/* DCL 전체에서 기능 추가가 있는 경우 MINOR 증가한다. */
14#define DCL_VERSION 3007004
15#define DCL_VERSION_STRING "3.7.4"
16#define DCL_VERSION_COMMA 3,7,4,0
17
18/* DCL Core Library Version */
19/* MINOR의 의미는 DCL_VERSION의 MINOR의 시점을 지시한다. */
20#define DCL_CORE_VERSION 3007004
21#define DCL_CORE_VERSION_STRING "3.7.4"
22#define DCL_CORE_VERSION_COMMA 3,7,4,0
23
24/* DCL Database Connection Adapter Version */
25/* MINOR의 의미는 DCL_VERSION의 MINOR의 시점을 지시한다. */
26#define DCL_SQL_VERSION 3005001
27#define DCL_SQL_VERSION_STRING "3.5.1"
28#define DCL_SQL_VERSION_COMMA 3,5,1,0
29
30/* DCL Http Server Environment/Extension Version */
31/* MINOR의 의미는 DCL_VERSION의 MINOR의 시점을 지시한다. */
32#define DCL_HTTP_VERSION 3002001
33#define DCL_HTTP_VERSION_STRING "3.2.1"
34#define DCL_HTTP_VERSION_COMMA 3,2,1,0
35
36#define DCL_COMPANY_NAME "Gowoonsoft Inc."
37#define DCL_COPYRIGHT_OWNER "Daejung Kim<daejung@gowoonsoft.com, " \
38 "gowoonsoft.com@gmail.com>"
39#define DCL_PRIVATE_BUILD DCL_COPYRIGHT_OWNER
40
41#endif /* __DCL_VERSION_H__ */