OWLNext    7.0
Borland's Object Windows Library for the modern age
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ocflink.h
Go to the documentation of this file.
1//----------------------------------------------------------------------------
2// ObjectComponents
3// Copyright (c) 1998 by Yura Bidus, All Rights Reserved
4// Copyright (c) 2008-2013 Vidar Hasfjord
5//----------------------------------------------------------------------------
6
7#if !defined(OCF_OCFLINK_H)
8#define OCF_OCFLINK_H
9
10#include <owl/private/owllink.h>
11
12#define OCF_LIB_NAME "ocf"
13
14// Link (import) modes
15
16#if defined(_OCFDLL)
17#define OCF_LIB_IMPORT "i"
18#else
19#define OCF_LIB_IMPORT ""
20#endif
21
22// Compose the appropriate pragma link directive.
23
24#pragma comment(lib, \
25 OCF_LIB_NAME \
26 OWL_LIB_DELIMITER \
27 OWL_LIB_VERSION \
28 OWL_LIB_DELIMITER \
29 OWL_LIB_COMPILER \
30 OWL_LIB_COMPILER_VERSION \
31 OWL_LIB_DELIMITER \
32 OWL_LIB_PLATFORM \
33 OWL_LIB_DELIMITER \
34 OWL_LIB_COMPAT \
35 OWL_LIB_DEBUG \
36 OWL_LIB_THREADING \
37 OWL_LIB_CHARACTERTYPE \
38 OCF_LIB_IMPORT \
39 ".lib")
40
41#endif // OCF_OWLLINK_H
42
43