Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
532 views

Why/when is __declspec( dllimport ) not needed?

In a project using a server.dll and a client.exe, I have dllexported a server symbol from the server dll, and not dllimported it into the client exe. Still, the application links, and starts, without ...
4
votes
3answers
127 views

what does __declspec(dllimport) really mean?

I saw the Qt source code like this: class Q_CORE_EXPORT QBasicAtomicInt { public: ... }; Which Q_CORE_EXPORT macro defines like below: define Q_DECL_IMPORT __declspec(dllimport) So what does ...
3
votes
3answers
211 views

Convert __declspec in C header to Delphi

I'm having trouble converting a class from a C header to use in Delphi. A snippet of the declaration in the C header file looks like this: class ...
2
votes
1answer
52 views

Using __declspec(nothrow) on functions that return references

I'd like to apply __declspec(nothrow) on some of my member functions that return object references. For example, I'd like to add it to this function (in MyClass.h): CMyClass& operator= ( IN ...
2
votes
2answers
167 views

What does __declspec(uuid(“ ComObjectGUID ”)) expand to?

I have a piece of code that uses Microsoft-specific extension to the C++: interface __declspec(uuid("F614FB00-6702-11d4-B0B7-0050BABFC904")) ICalculator : public IUnknown { //... }; What does ...
2
votes
2answers
138 views

C - __declspec(thread) variables performances

I'm working on the multithreading implementation of a library. In one module of this library there are some global variables (very often used in the program execution). In order to made the access to ...
1
vote
1answer
42 views

VC++ 2008/2010: is throw() or __declspec(nothrow) a better choice?

When using VC++ 2008 and 2010, which marker is better to use to indicate a function won't throw exceptions: throw() (C++ standard) __declspec(nothrow) (MS extension) I read a few older forum ...
1
vote
2answers
135 views

LNK2001 unresolved external when importing functions from MFC DLL

I have created an MFC DLL and have exported the functions for example in the file SerialPort.h: class CSerialPortApp : public CWinApp { public: CSerialPortApp(); __declspec(dllexport) int ...
1
vote
2answers
175 views

Do overloaded operators within classes require __declspec(dllexport) if they're used in a DLL project?

When using __declspec(dllexport), should overloaded operators also have this exportation flag assigned? For example, say you have something like: /* Overloaded operator (equivalent operator) returns ...
0
votes
3answers
55 views

C++ __declspec( dllexport ) functions cannot access instance variables

I am trying to protect some C++ code by exporting as a DLL (on Windows/VS 2010). In the example below var is set in the superclass constructor, and the debugger shows it is definitely set to ...
0
votes
0answers
38 views

__declspec(thread) and __declspec(align(16)) isn't aligned

I'm working on a project that requires a lot of processing power, and hence have optimised a lot of the critical functions, as well as having it multithreaded to use multiple cores. I am using ...
0
votes
1answer
61 views

MSVC: __declspec(dllexport) does not symbols

I have a small issue when it comes to writing a DLL in MSVC (the 2010 version in particular). My program consists of the main part and a DLL. The DLL contains a function that is __declspec(dllexport) ...
0
votes
0answers
25 views

__declspec in Codewarrior compiler

In codewarrior compiler, we can use directly __declspec or we need to use #pragma and then use __declspec. like, # pragma section data_type "hello" # define A __declspec(section "hello")