|
|
i did already..but i want a still image only where waterfall is just showing the animation.......
NooR
|
|
|
|
|
Darka wrote: have you heard of this new tool called a search engine
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
|
|
|
|
|
I created two Win32 DLL projects with VC++ 2005: one with "Export symbols" checked; the other not. I don't see any difference between these two projects.
I was expecting to see some ".def" file or some preprocessor definitions when it is checked. But the files in the solutions are the same. And the preprocessor definitions are the same.
Could anyone point out the difference when "Export symbols" is checked? Thanks!
Maxwell Chen
|
|
|
|
|
I believe the difference is that 'export symbols' will generate the .lib type library, whereas not exporting symbols will not generate it.
Darka [Xanya]
|
|
|
|
|
Darka wrote: the .lib type library
I found it also generated a "NoExp.lib" in the output folder of the "unchecked" project.
Maxwell Chen
|
|
|
|
|
it's actually to do with exporting debugging symbols, have you tried debugging both versions of the dll ?
Darka [Xanya]
|
|
|
|
|
Ignore both my previous comments - I think the setting actually creates a file called <projectname>.h which contains the __declspec(dllexport) declarations so that you can export from the DLL.
Darka [Xanya]
|
|
|
|
|
Darka wrote: I think the setting actually creates a file called .h which contains the __declspec(dllexport) declarations so that you can export from the DLL.
Both "Export symbols" checked and unchecked projects have the same declarations in "ProjectName.h"s.
#ifdef EXP_EXPORTS
#define EXP_API __declspec(dllexport)
#else
#define EXP_API __declspec(dllimport)
#endif
And EXP_EXPORTS is defined in the preprocessor definition setting.
Maxwell Chen
|
|
|
|
|
I am using visual studio .net 2003 and get the results I mentioned earlier, I guess it may be different in 2005 but I cannot find any information on the setting.
Darka [Xanya]
|
|
|
|
|
Hi,
I am creating a Win32 DLL, using VS.NET. I build the project and want to use functions from dll, but i am wondering where is the .lib file. the dll file is there in debug folder of project.
any pointer will be helpful
Thanks in advance
Abhishake Lahare
|
|
|
|
|
there may not be one, a dll is a dynamic library and a lib is a static library.
Darka [Xanya]
-- modified at 5:42 Wednesday 12th July, 2006
also a .lib file can be a type library for a .dll
|
|
|
|
|
1)how can we confirm that it do not generate any lib file?
2)Whether that means you cannot statically link?
Regards
Abhishake Lahare
|
|
|
|
|
|
When you create the project for a DLL, you can specify whether you want to produce the .lib file too (export symbols checkbox) but i can't remember how you modify an existing project to do this.
Darka [Xanya]
|
|
|
|
|
see Property Pages / Configuration Properties / Linker / Advanced. put the path to the file you want to create in the field labeled "Import Library" (ex. "./Debug/MyDLL.lib")
Cleek | Image Toolkits | Thumbnail maker
|
|
|
|
|
Can you explain this
"Difference in threads & multithreads"
Thank you
|
|
|
|
|
|
Nirmal Khatri wrote: Can you explain this "Difference in threads & multithreads"
The word "multi." They both imply more than one thread.
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
|
|
|
|
|
Hi All,
Can someone provide a good link that relates to the designing and development of code for creating efficient user interfaces.(Only Win32)
I tried googling for the same without any satisfactory results.
Some good articles on codeproject or some where else.
Somethings seem HARD to do, until we know how to do them.
_AnShUmAn_
|
|
|
|
|
Sometimes it difficult to define efficent. i have experienced in many cases where i have to change the efficent UI( from functional and user point of view), but customer does'nt need that UI.
I know it sound silly, but just designed what customer wants
Regards
Abhishake Lahare
|
|
|
|
|
|
Thanks Nave for Good source
Regards
Abhishake Lahare
|
|
|
|
|
|