mirror of
https://github.com/chris2511/xca.git
synced 2026-09-13 18:46:25 +05:00
19 lines
235 B
C
19 lines
235 B
C
/* base definitions */
|
|
|
|
#ifndef BASE_H
|
|
#define BASE_H
|
|
|
|
#define VER "MY_VERSION"
|
|
|
|
#if QT_VERSION >= 0x030000
|
|
#define qt3 1
|
|
#endif
|
|
|
|
#ifdef WIN32
|
|
#include <WINDOWS.H>
|
|
#endif
|
|
|
|
#define XCA_TITLE "X Certificate and Key management"
|
|
|
|
#endif
|