Tagged Questions

0
votes
1answer
25 views

MFC CRT Order Linker Problem

Hey there! I have exactly the problem described here (i'm getting those linker errors when trying to add MFC to my project): http://support.microsoft.com/?scid=kb%3Ben-us%3B148652 …
0
votes
3answers
335 views

VC90 Debug CRT error

I have created a Dll in VC++ 2008. But it is working with some other software (VB). Unable to load that dll function in Labview. VC90 Debug CRT error is coming. Why is this softwar …
4
votes
1answer
47 views

What functions does _WinMainCRTStartup perform?

This is part of a series of at least two closely related, but distinct questions. I hope I'm doing the right thing by asking them separately. I'm trying to get my Visual C++ 2008 …
0
votes
2answers
79 views

Building Visual C++ app that doesn’t use CRT functions still references some

This is part of a series of at least two closely related, but distinct questions. I hope I'm doing the right thing by asking them separately. I'm trying to get my Visual C++ 2008 …
2
votes
6answers
613 views

Should I compile with /MD or /MT ?

In Visual Studio, there's the compile flags /MD and /MT which let you choose which kind of C runtime library you want. I understand the difference in implementation, but I'm still …
5
votes
6answers
795 views

Does a memory leak at unload of a DLL cause a leak in the host process?

Consider this case: dll = LoadDLL() dll->do() ... void do() { char *a = malloc(1024); } ... UnloadDLL(dll); At this point, will the 1k allocated in the call to malloc() …
0
votes
1answer
91 views

How to statically link to the CRT with GCC?

Using GCC4 in MAC OSX, Linux and Windows. Thanks.
2
votes
1answer
148 views

How do I use a VBscript to determine if the monitor(s) connected to a machine is an LCD or CRT?

I am trying to add info to a VBscript that will determine if the monitor(s) connected to the current machine is an LCD or CRT. I know I can get the EDID info from HKLM\System\CCS\ …
4
votes
3answers
889 views

Windows malloc replacement (e.g., tcmalloc) and dynamic crt linking

A C++ program that uses several DLLs and QT should be equipped with a malloc replacement (like tcmalloc) for performance reasons. With linux, there is no problem, but with windows, …
0
votes
2answers
177 views

how to avoid lnk2005 error in visual studio.

Hi any body plzzzzzz help me to remove linker error 2005. I am vexed with these errors libcmtd.dll msvmrtd.dll some element(ex: _mkdir ) alredy defined like error.. ur support w …
3
votes
4answers
930 views

Should I link to the Visual Studio C runtime statically or dynamically?

I have read arguments on both sides about whether one should link to the C runtime library statically or dynamically in Visual Studio projects, and I'm still not entirely sure what …
3
votes
5answers
471 views

How to execute some code before entering the main() routine in VC?

I am reading Microsoft's CRT source code, and I can come up with the following code, where the function __initstdio1 will be executed before main() routine. The question is, how t …
1
vote
3answers
246 views

How to build C++ app which runs on plain old XP SP2 with Visual Studio 2008 and no Side-by-Side DLLs?

I'd like to compile a C++ project with just a single call to WinExec in order to launch another executable with some command line parameters. I've no idea what settings to specify …
5
votes
3answers
973 views

How can I write a Windows application without using WinMain?

Windows GUI applications written in C/C++ have 'WinMain' as an entry point (rather than 'main'). My understanding of this is that the compiler generates a 'main' function to be cal …
1
vote
1answer
297 views

A Beginner’s scanf_s() Disability

int main(void) { char tmp, arr[100]; int i, k; printf("Enter a string: "); scanf_s("%s", arr); for ( k = 0, i = (strlen(arr) - 1); k < (int) (strlen(arr) / …

1 2 next
15 30 50 per page