3 / 3 / 1
Регистрация: 05.07.2013
Сообщений: 39
1

LNK2005: _DllCanUnloadNow@0 уже определен в dlldata.obj

28.03.2015, 12:09. Показов 1613. Ответов 2
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Продолжаю изучать com. В итоге получаю новую ошибку:
error LNK2005: _DllCanUnloadNow@0 уже определен в dlldata.obj
error LNK2005: _DllGetClassObject@12 уже определен в dlldata.obj
dlldata.c - Файл, созданный MIDL-компилятором. В принципе, понятно, из-за чего возникает ошибка. В main.cpp уже определены две эти функции:
Кликните здесь для просмотра всего текста

C++
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
26
27
28
29
30
31
32
33
34
35
36
37
STDAPI DllCanUnloadNow()
{
    if ((g_cComponents == 0) && (g_cServerLocks == 0))
    {
        return S_OK ;
    }
    else
    {
        return S_FALSE ;
    }
}
 
STDAPI DllGetClassObject(const CLSID& clsid,
                         const IID& iid,
                         void** ppv)
{
    trace("DllGetClassObject:\tCreate class factory.") ;
 
    // Can we create this component?
    if (clsid != CLSID_Component)
    {
        return CLASS_E_CLASSNOTAVAILABLE ;
    }
 
    // Create class factory.
    CFactory* pFactory = new CFactory ;  // No AddRef in constructor
    if (pFactory == NULL)
    {
        return E_OUTOFMEMORY ;
    }
 
    // Get requested interface.
    HRESULT hr = pFactory->QueryInterface(iid, ppv) ;
    pFactory->Release() ;
 
    return hr ;
}

И в dlldata.c макрос DLLDATA_ROUTINES( aProxyFileList, GET_DLL_CLSID ) тоже определяет эти две функции. Но ведь у каждой dll должны быть разные DllGetClassObject. Если убрать те, которые написаны мной - то код компилируется. Но не работает. Просто dll не знает, что именно возвращать. Убрать макрос в dlldata.c тоже не получается, тогда не компилируется _p.c файл(Вроде как макрос DLLDATA_ROUTINES определяет функцию в этом самом файле). Подскажите, пожалуйста, что я не так делаю?

dlldata.c
Кликните здесь для просмотра всего текста
C++
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*********************************************************
   DllData file -- generated by MIDL compiler 
 
        DO NOT ALTER THIS FILE
 
   This file is regenerated by MIDL on every IDL file compile.
 
   To completely reconstruct this file, delete it and rerun MIDL
   on all the IDL files in this DLL, specifying this file for the
   /dlldata command line option
 
*********************************************************/
 
#define PROXY_DELEGATION
 
#include <rpcproxy.h>
 
#ifdef __cplusplus
extern "C"   {
#endif
 
EXTERN_PROXY_FILE( source )
 
 
PROXYFILE_LIST_START
/* Start of list */
  REFERENCE_PROXY_FILE( source ),
/* End of list */
PROXYFILE_LIST_END
 
 
DLLDATA_ROUTINES( aProxyFileList, GET_DLL_CLSID )
 
#ifdef __cplusplus
}  /*extern "C" */
#endif
 
/* end of generated dlldata file */
 
 
#ifdef __cplusplus
}  /*extern "C" */
#endif
 
/* end of generated dlldata file */


source_p.c
Кликните здесь для просмотра всего текста
C++
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/* this ALWAYS GENERATED file contains the proxy stub code */
 
 
 /* File created by MIDL compiler version 8.00.0595 */
/* at Sat Mar 28 12:38:16 2015
 */
/* Compiler settings for source.idl:
    Oicf, W1, Zp8, env=Win32 (32b run), target_arch=X86 8.00.0595 
    protocol : dce , ms_ext, c_ext, robust
    error checks: allocation ref bounds_check enum stub_data 
    VC __declspec() decoration level: 
         __declspec(uuid()), __declspec(selectany), __declspec(novtable)
         DECLSPEC_UUID(), MIDL_INTERFACE()
*/
/* @@MIDL_FILE_HEADING(  ) */
 
#if !defined(_M_IA64) && !defined(_M_AMD64) && !defined(_ARM_)
 
 
#pragma warning( disable: 4049 )  /* more than 64k source lines */
#if _MSC_VER >= 1200
#pragma warning(push)
#endif
 
#pragma warning( disable: 4211 )  /* redefine extern to static */
#pragma warning( disable: 4232 )  /* dllimport identity*/
#pragma warning( disable: 4024 )  /* array to pointer mapping*/
#pragma warning( disable: 4152 )  /* function/data pointer conversion in expression */
#pragma warning( disable: 4100 ) /* unreferenced arguments in x86 call */
 
#pragma optimize("", off ) 
 
#define USE_STUBLESS_PROXY
 
 
/* verify that the <rpcproxy.h> version is high enough to compile this file*/
#ifndef __REDQ_RPCPROXY_H_VERSION__
#define __REQUIRED_RPCPROXY_H_VERSION__ 475
#endif
 
 
#include "rpcproxy.h"
#ifndef __RPCPROXY_H_VERSION__
#error this stub requires an updated version of <rpcproxy.h>
#endif /* __RPCPROXY_H_VERSION__ */
 
 
#include "source_h.h"
 
#define TYPE_FORMAT_STRING_SIZE   3                                 
#define PROC_FORMAT_STRING_SIZE   31                                
#define EXPR_FORMAT_STRING_SIZE   1                                 
#define TRANSMIT_AS_TABLE_SIZE    0            
#define WIRE_MARSHAL_TABLE_SIZE   0            
 
typedef struct _source_MIDL_TYPE_FORMAT_STRING
    {
    short          Pad;
    unsigned char  Format[ TYPE_FORMAT_STRING_SIZE ];
    } source_MIDL_TYPE_FORMAT_STRING;
 
typedef struct _source_MIDL_PROC_FORMAT_STRING
    {
    short          Pad;
    unsigned char  Format[ PROC_FORMAT_STRING_SIZE ];
    } source_MIDL_PROC_FORMAT_STRING;
 
typedef struct _source_MIDL_EXPR_FORMAT_STRING
    {
    long          Pad;
    unsigned char  Format[ EXPR_FORMAT_STRING_SIZE ];
    } source_MIDL_EXPR_FORMAT_STRING;
 
 
static const RPC_SYNTAX_IDENTIFIER  _RpcTransferSyntax = 
{{0x8A885D04,0x1CEB,0x11C9,{0x9F,0xE8,0x08,0x00,0x2B,0x10,0x48,0x60}},{2,0}};
 
 
extern const source_MIDL_TYPE_FORMAT_STRING source__MIDL_TypeFormatString;
extern const source_MIDL_PROC_FORMAT_STRING source__MIDL_ProcFormatString;
extern const source_MIDL_EXPR_FORMAT_STRING source__MIDL_ExprFormatString;
 
 
extern const MIDL_STUB_DESC Object_StubDesc;
 
 
extern const MIDL_SERVER_INFO IX_ServerInfo;
extern const MIDL_STUBLESS_PROXY_INFO IX_ProxyInfo;
 
 
 
#if !defined(__RPC_WIN32__)
#error  Invalid build platform for this stub.
#endif
 
#if !(TARGET_IS_NT50_OR_LATER)
#error You need Windows 2000 or later to run this stub because it uses these features:
#error   /robust command line switch.
#error However, your C/C++ compilation flags indicate you intend to run this app on earlier systems.
#error This app will fail with the RPC_X_WRONG_STUB_VERSION error.
#endif
 
 
static const source_MIDL_PROC_FORMAT_STRING source__MIDL_ProcFormatString =
    {
        0,
        {
 
    /* Procedure Fx */
 
            0x33,       /* FC_AUTO_HANDLE */
            0x6c,       /* Old Flags:  object, Oi2 */
/*  2 */    NdrFcLong( 0x0 ),   /* 0 */
/*  6 */    NdrFcShort( 0x3 )/* 3 */
/*  8 */    NdrFcShort( 0x8 )/* x86 Stack size/offset = 8 */
/* 10 */    NdrFcShort( 0x0 )/* 0 */
/* 12 */    NdrFcShort( 0x8 )/* 8 */
/* 14 */    0x44,       /* Oi2 Flags:  has return, has ext, */
            0x1,        /* 1 */
/* 16 */    0x8,        /* 8 */
            0x1,        /* Ext Flags:  new corr desc, */
/* 18 */    NdrFcShort( 0x0 )/* 0 */
/* 20 */    NdrFcShort( 0x0 )/* 0 */
/* 22 */    NdrFcShort( 0x0 )/* 0 */
 
    /* Return value */
 
/* 24 */    NdrFcShort( 0x70 ), /* Flags:  out, return, base type, */
/* 26 */    NdrFcShort( 0x4 )/* x86 Stack size/offset = 4 */
/* 28 */    0x8,        /* FC_LONG */
            0x0,        /* 0 */
 
            0x0
        }
    };
 
static const source_MIDL_TYPE_FORMAT_STRING source__MIDL_TypeFormatString =
    {
        0,
        {
            NdrFcShort( 0x0 )/* 0 */
 
            0x0
        }
    };
 
 
/* Object interface: IUnknown, ver. 0.0,
   GUID={0x00000000,0x0000,0x0000,{0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46}} */
 
 
/* Object interface: IX, ver. 0.0,
   GUID={0x83680BFB,0x53DF,0x49AC,{0x97,0x40,0xF6,0x8B,0x0E,0xC7,0xA5,0xD5}} */
 
#pragma code_seg(".orpc")
static const unsigned short IX_FormatStringOffsetTable[] =
    {
    0
    };
 
static const MIDL_STUBLESS_PROXY_INFO IX_ProxyInfo =
    {
    &Object_StubDesc,
    source__MIDL_ProcFormatString.Format,
    &IX_FormatStringOffsetTable[-3],
    0,
    0,
    0
    };
 
 
static const MIDL_SERVER_INFO IX_ServerInfo = 
    {
    &Object_StubDesc,
    0,
    source__MIDL_ProcFormatString.Format,
    &IX_FormatStringOffsetTable[-3],
    0,
    0,
    0,
    0};
CINTERFACE_PROXY_VTABLE(4) _IXProxyVtbl = 
{
    &IX_ProxyInfo,
    &IID_IX,
    IUnknown_QueryInterface_Proxy,
    IUnknown_AddRef_Proxy,
    IUnknown_Release_Proxy ,
    (void *) (INT_PTR) -1 /* IX::Fx */
};
 
const CInterfaceStubVtbl _IXStubVtbl =
{
    &IID_IX,
    &IX_ServerInfo,
    4,
    0, /* pure interpreted */
    CStdStubBuffer_METHODS
};
 
static const MIDL_STUB_DESC Object_StubDesc = 
    {
    0,
    NdrOleAllocate,
    NdrOleFree,
    0,
    0,
    0,
    0,
    0,
    source__MIDL_TypeFormatString.Format,
    1, /* -error bounds_check flag */
    0x50002, /* Ndr library version */
    0,
    0x8000253, /* MIDL Version 8.0.595 */
    0,
    0,
    0,  /* notify & notify_flag routine table */
    0x1, /* MIDL flag */
    0, /* cs routines */
    0,   /* proxy/server info */
    0
    };
 
const CInterfaceProxyVtbl * const _source_ProxyVtblList[] = 
{
    ( CInterfaceProxyVtbl *) &_IXProxyVtbl,
    0
};
 
const CInterfaceStubVtbl * const _source_StubVtblList[] = 
{
    ( CInterfaceStubVtbl *) &_IXStubVtbl,
    0
};
 
PCInterfaceName const _source_InterfaceNamesList[] = 
{
    "IX",
    0
};
 
 
#define _source_CHECK_IID(n)    IID_GENERIC_CHECK_IID( _source, pIID, n)
 
int __stdcall _source_IID_Lookup( const IID * pIID, int * pIndex )
{
    
    if(!_source_CHECK_IID(0))
        {
        *pIndex = 0;
        return 1;
        }
 
    return 0;
}
 
const ExtendedProxyFileInfo source_ProxyFileInfo = 
{
    (PCInterfaceProxyVtblList *) & _source_ProxyVtblList,
    (PCInterfaceStubVtblList *) & _source_StubVtblList,
    (const PCInterfaceName * ) & _source_InterfaceNamesList,
    0, /* no delegation */
    & _source_IID_Lookup, 
    1,
    2,
    0, /* table of [async_uuid] interfaces */
    0, /* Filler1 */
    0, /* Filler2 */
    0  /* Filler3 */
};
#pragma optimize("", on )
#if _MSC_VER >= 1200
#pragma warning(pop)
#endif
 
 
#endif /* !defined(_M_IA64) && !defined(_M_AMD64) && !defined(_ARM_) */
0
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
28.03.2015, 12:09
Ответы с готовыми решениями:

Ошибка: LNK2005 <Имя> уже определен в cities.obj
Определяю переменные для нескольких файлов программ, но получаю ошибки. Не могу найти решение....

Error LNK2005: /*конструструктор класса*/ уже определен в [имя проекта]. obj
Здравствуйте. Подскажите, пожалуйста. Я созд управляемый класс, он описан в отдельных модулях .h...

Компиляция выдает ошибку "error LNK2005: _main уже определен в int.obj"
Добрый день уважаемые. Столкнулся с данной проблемой. #include &lt;iostream&gt; #include &lt;conio.h&gt; ...

LNK2005 "public: __thiscall Sozdanie::Sozdanie(void)" уже определен в Programma Pozdravlenie.obj
Есть код для вывода из трех файлов с именами, праздниками и пожеланиями случайного поздравления (Я...

2
Ушел с форума
Эксперт С++
16476 / 7439 / 1187
Регистрация: 02.05.2013
Сообщений: 11,617
Записей в блоге: 1
28.03.2015, 13:11 2
Вам нужно подключать dlldata.c только если вы создаете свою
proxy/stub dll. То есть, пишете свой маршаллинг типов. Для этого
делается отдельный проект. То есть, одна dll - COM-класс, и
вторая - proxy/stub dll для маршаллинга.

Во всех остальных случаях вы просто компилируете IDL-файл и
подключаете файлы xxx_i.h и xxx_i.c к своему проекту. Все.

C++
1
2
3
4
5
CFactory* pFactory = new CFactory ;  // No AddRef in constructor
if (pFactory == NULL)
{
    return E_OUTOFMEMORY ;
}
Компиляторы уже лет сто не возвращают NULL в случае ошибки new.
Вместо этого кидается std::bad_alloc.
1
Модератор
3400 / 2171 / 353
Регистрация: 13.01.2012
Сообщений: 8,408
30.03.2015, 09:23 3
Цитата Сообщение от Убежденный Посмотреть сообщение
Компиляторы уже лет сто не возвращают NULL в случае ошибки new
как вариант
C++
1
... new(std::nothrow) ...
0
30.03.2015, 09:23
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
30.03.2015, 09:23
Помогаю со студенческими работами здесь

error LNK2005 (конструктор уже определен в ...)
Здраствуйте! Недавно начал работать с классами на С++, и столкнулся с такой вот ошибкой: error...

Уже определен в main.obj
main.cpp #include &lt;iostream&gt; #include &lt;ctime&gt; #include &quot;inventory.h&quot; using namespace std; ...

int glob уже определен в main.obj
Почему #ifndef не помогает? 1.h: #ifndef ONE_H #define ONE_H int glob; #endif

Ошибка "Объект уже определен" (LNK2005)
если в ставить этот код в h файл то пишет ошибку не знаю уже как решить её не где нету enum Tabs с...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
3
Ответ Создать тему
Опции темы

КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru