No announcements
Found 3785296 threads
-
0 Votes
Difference between DLL and LIB.?
I compare my steps for trying with both LIB and DLL files.Answered | 9 Replies | 3446 Views | Created by bae bae - Tuesday, October 14, 2008 3:59 AM | Last reply by bae bae - Tuesday, October 14, 2008 5:44 AM -
0 Votes
What's the difference between a DLL's LIB and a Static Lib?
The .lib accompanying the .dll only contains the import table >for the .dll; the .dll itself contains the actual object files.Answered | 4 Replies | 16734 Views | Created by SoBigSoBig - Friday, December 25, 2009 7:20 AM | Last reply by WayneAKing - Friday, January 1, 2010 8:26 AM -
1 Votes
DLL and libs
main pragram <- My DLL(.h, .lib, .dll)Answered | 4 Replies | 639 Views | Created by msforenter090 - Thursday, March 24, 2016 9:16 PM | Last reply by msforenter090 - Saturday, March 26, 2016 12:36 PM -
0 Votes
Compiling definitions in a static lib file into a dll
We can overcome it by putting references to every single function in the dll, but this creates an awkward maintenance overhead which was the reason for avoiding duplication.Answered | 3 Replies | 858 Views | Created by WilliamThorleyIbex - Monday, September 29, 2014 4:50 PM | Last reply by davewilk - Tuesday, September 30, 2014 9:22 AM -
3 Votes
Find out Libs used in a DLL?
I don't believe you can recover the names of the static libraries that are used in the DLL build for the same reason you can't recover source code from an object ...Answered | 7 Replies | 3293 Views | Created by _San - Tuesday, December 21, 2010 2:44 PM | Last reply by _San - Friday, January 14, 2011 2:03 PM -
2 Votes
Converting static lib to a DLL
But as for the reason why the DLL appears small compared to the lib, there is two possible reasons.Answered | 4 Replies | 3875 Views | Created by mcbaucom - Tuesday, March 23, 2010 7:16 PM | Last reply by Eric Haddan - Wednesday, March 24, 2010 2:30 AM -
0 Votes
.dll vs. .lib
This .lib file is the import library file, generally, it contains the name of the DLL and a table of the exported functions' entries.Answered | 2 Replies | 3613 Views | Created by HNMXPORT - Friday, October 16, 2009 1:04 AM | Last reply by Wesley Yao - Monday, October 19, 2009 3:54 AM -
0 Votes
reuse (.dll) and (.lib) files in HTML5/WinJS project
James, So leaving about .lib files.Answered | 3 Replies | 4860 Views | Created by AKwin - Monday, April 29, 2013 6:39 AM | Last reply by Jesse Jiang - Thursday, May 2, 2013 2:11 AM -
0 Votes
c# dll lib
In C# you don't often talk about DLLs and LIBs.Answered | 12 Replies | 939 Views | Created by robotal Timberlake - Sunday, February 16, 2020 1:47 AM | Last reply by valat - Monday, February 17, 2020 1:40 PM -
1 Votes
Static lib to DLL?
YOU USE AT YOUR OWN RISK.Answered | 4 Replies | 24210 Views | Created by DavidHarrison - Thursday, June 22, 2006 12:15 PM | Last reply by g_stefan - Monday, June 11, 2007 2:05 AM -
0 Votes
How to convert .lib to .dll?
Hi, For Question 1: http://stackoverflow.com/questions/2384932/converting-static-link-library-to-dynamic-dll For Question ...Answered | 3 Replies | 2945 Views | Created by JennWill - Thursday, November 22, 2012 11:34 AM | Last reply by DhavalPanchal247 - Friday, November 23, 2012 8:16 AM -
5 Votes
Porting to Metro - static libs and DLLs
Hi Adam, Actually you should be able to consume a standard Win32 DLL project in your app if this DLL doesn't use any blacklisted APIs.Answered | 9 Replies | 7668 Views | Created by jmuffat - Wednesday, September 21, 2011 3:35 PM | Last reply by David_Brooks - Wednesday, February 1, 2012 4:40 PM -
0 Votes
Compile 3rd party *.lib + *.h to *.dll
However, you can create a DLL that exports wrapper functions.Answered | 2 Replies | 861 Views | Created by jiaxiong - Thursday, October 22, 2015 3:33 AM | Last reply by RLWA32 - Thursday, October 22, 2015 4:04 AM -
0 Votes
Extracting lib file
You cannot extract code from n Dll or Lib file,but you can use the functions that are exported in the Dll or lib.Answered | 5 Replies | 3662 Views | Created by MIB BALA - Wednesday, August 18, 2010 11:24 AM | Last reply by Mihai Nita - Monday, August 23, 2010 7:23 PM -
2 Votes
What combinations of EXE and DLLs or LIBs can be safely done?
If two modules use different C runtimes then the table that the FILE information is stored in are different.Answered | 5 Replies | 617 Views | Created by Juan Dent - Tuesday, August 1, 2017 12:27 AM | Last reply by Igor Tandetnik - Wednesday, August 2, 2017 12:15 AM -
0 Votes
How to Unload Class Lib/ dll file ?
Instead why not use the Activator.CreateInstance overload that takes 2 strings (assembly name, type name)?Answered | 1 Replies | 796 Views | Created by Ali Muhammad Nizamaani - Friday, April 17, 2015 1:56 PM | Last reply by IWolbers - Friday, April 17, 2015 3:25 PM -
0 Votes
wats de difference between object file libraries and dlls?
An object file (.obj) is what you get when you compile a .cpp file.Answered | 2 Replies | 3183 Views | Created by kssu05 - Monday, September 8, 2008 11:10 AM | Last reply by davewilk - Monday, September 8, 2008 1:26 PM -
1 Votes
Looking for help with Link Error - LNK1104: cannot open file 'pthreadVC2.lib'
The same for lib files.Answered | 12 Replies | 6031 Views | Created by rcrawford855 - Thursday, December 17, 2015 5:55 PM | Last reply by WayneAKing - Sunday, December 20, 2015 9:03 PM -
1 Votes
dll file use?
There are other reasons too, the above is the tip of the iceberg.Answered | 1 Replies | 1780 Views | Created by Aswin Balan - Friday, September 13, 2013 5:34 PM | Last reply by Kareninstructor - Friday, September 13, 2013 5:55 PM -
0 Votes
Why do we still need a .lib stub file when we've got the actual .dll implementation?
The linker has no way to match that up with kernel32.dll without a .lib file.Answered | 5 Replies | 5207 Views | Created by keni_nan - Monday, September 26, 2011 4:03 AM | Last reply by Myria - Wednesday, September 28, 2011 12:22 AM - Items 1 to 20 of 3785296 Next ›
No announcements