Click here to Skip to main content
15,917,176 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Need help fast... Pin
Ravi Bhavnani15-Aug-04 6:44
professionalRavi Bhavnani15-Aug-04 6:44 
GeneralRe: Need help fast... Pin
Larsson15-Aug-04 6:46
Larsson15-Aug-04 6:46 
Generalsqltype binding Pin
TehMedic15-Aug-04 2:33
TehMedic15-Aug-04 2:33 
GeneralRe: sqltype binding Pin
palbano15-Aug-04 20:08
palbano15-Aug-04 20:08 
GeneralRe: sqltype binding Pin
TehMedic15-Aug-04 20:24
TehMedic15-Aug-04 20:24 
GeneralProperty Page problems Pin
giziks14-Aug-04 22:37
giziks14-Aug-04 22:37 
QuestionWhat's the difference between Multi-threaded and Multi-threaded DLL? Pin
Link260014-Aug-04 20:01
Link260014-Aug-04 20:01 
AnswerRe: What's the difference between Multi-threaded and Multi-threaded DLL? Pin
cmk15-Aug-04 0:51
cmk15-Aug-04 0:51 
I have to assume you are talking about the CRT linkage specification.

If it doesn't say dll then you are statically linking to the CRT library.
If it does say dll then you are dynamically linking to the CRT dll.

If it says multi-threaded then you are linking to a thread safe version. This version will allow you to have two threads call a CRT function that is not normally thread safe due to global state information e.g. strtok. The thread safe version allocates thread local state memory for these functions, but obviously introduces more overhead.


Alex Ngai wrote:
If I set it there, am I creating an application that is multi-threaded?

No. If you create more than one thread then you are creating a multi-threaded application. If you do this you will likely want to link against a mutli-threaded CRT.


...cmk

Save the whales - collect the whole set
GeneralRe: What's the difference between Multi-threaded and Multi-threaded DLL? Pin
Link260015-Aug-04 10:18
Link260015-Aug-04 10:18 
GeneralRe: What's the difference between Multi-threaded and Multi-threaded DLL? Pin
cmk15-Aug-04 12:41
cmk15-Aug-04 12:41 
GeneralRe: What's the difference between Multi-threaded and Multi-threaded DLL? Pin
Link260015-Aug-04 14:12
Link260015-Aug-04 14:12 
GeneralRe: What's the difference between Multi-threaded and Multi-threaded DLL? Pin
cmk15-Aug-04 15:11
cmk15-Aug-04 15:11 
GeneralRe: What's the difference between Multi-threaded and Multi-threaded DLL? Pin
Link260015-Aug-04 15:37
Link260015-Aug-04 15:37 
GeneralRe: What's the difference between Multi-threaded and Multi-threaded DLL? Pin
cmk15-Aug-04 17:09
cmk15-Aug-04 17:09 
GeneralRe: What's the difference between Multi-threaded and Multi-threaded DLL? Pin
Link260015-Aug-04 17:20
Link260015-Aug-04 17:20 
GeneralRe: What's the difference between Multi-threaded and Multi-threaded DLL? Pin
cmk15-Aug-04 21:43
cmk15-Aug-04 21:43 
AnswerRe: What's the difference between Multi-threaded and Multi-threaded DLL? Pin
peterchen15-Aug-04 0:54
peterchen15-Aug-04 0:54 
GeneralRe: What's the difference between Multi-threaded and Multi-threaded DLL? Pin
Link260015-Aug-04 14:21
Link260015-Aug-04 14:21 
GeneralRe: What's the difference between Multi-threaded and Multi-threaded DLL? Pin
peterchen15-Aug-04 14:34
peterchen15-Aug-04 14:34 
GeneralLink Problems Pin
Jnewg514-Aug-04 17:11
Jnewg514-Aug-04 17:11 
GeneralRe: Link Problems Pin
Ryan Binns15-Aug-04 18:33
Ryan Binns15-Aug-04 18:33 
GeneralRegistry change event Pin
RoyceF14-Aug-04 16:35
RoyceF14-Aug-04 16:35 
GeneralRe: Registry change event Pin
Scozturk14-Aug-04 22:54
professionalScozturk14-Aug-04 22:54 
GeneralRe: Registry change event Pin
RoyceF15-Aug-04 9:43
RoyceF15-Aug-04 9:43 
GeneralRe: Registry change event Pin
Scozturk16-Aug-04 2:30
professionalScozturk16-Aug-04 2:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.