15
votes
14answers
3k views
When to use dynamic vs. static libraries
When creating a class library in C++, you can choose between dynamic (.dll) and static (.lib) libraries. What is the difference between them and when is it appropriate to use which …
5
votes
8answers
968 views
Is it possible to use a C++ .lib file from within a C# program?
Is it possible to use a C++ .lib file from within a C# program?
4
votes
4answers
458 views
Why isn’t this library linking with a pragma comment?
I'm using Fmod in a project I'm working on in Visual C++ 2008. If I include
../fmodapi375win/api/lib/fmodvc.lib
in Project->Linker->Input, it works fine, but for some reason if …
3
votes
2answers
613 views
Tools for inspecting .lib files?
I'm evaluating some underdocumented software. When I build a sample project, I'm getting a linker error that looks like:
error LNK2019: unresolved external symbol
There aren't a w …
3
votes
7answers
895 views
circular dependencies between dlls with visual studio
I have a circular dependency between two functions. I would like each of these functions to reside in its own dll. Is it possible to build this with visual studio?
foo(int i)
{
…
2
votes
3answers
128 views
what’s the differences between .dll , .lib, .h files ?
why in a project should include some *.lib, .h or some other files ? and what are these things used for ?
2
votes
4answers
169 views
How to update a C++ dll without needing to relink the exe with the lib file?
First off , I'm referring to a Windows environment and VC++ compiler.
What I want to be able to do is rebuild a Vc++ dll and maintain compatability with an exe that has already be …
2
votes
4answers
289 views
Solved! Problem calling a function when it is in a .lib (C++)
I have a class with a static method that looks roughly like:
class X {
static float getFloat(MyBase& obj) {
return obj.value(); // MyBase::value() is virtual
…
1
vote
4answers
140 views
C++ linker issues
Hello there,
I have this:
a.cpp
int localfunction () { return 1; }
int local_symbol = localfunction();
b.cpp
void thirdfunction () {};
main.cpp
void main () { thirdfunc …
1
vote
2answers
105 views
From [dll / lib / def / exp] to c/c++ header file
Hi, I have a dynamic library compiled with visual studio.
(so 4 files: Library.dll, Library.lib, Library.def and Library.exp)
This dll contains exported classes and functions.
Is …
1
vote
1answer
105 views
Why do we still need a .lib stub file when we’ve got the actual .dll implementation ?
hi folks,
i'm wondering why linkers can not do their job simply by consulting the information in the actual .dll files that got the actual implementation code ? i mean why linkers …
0
votes
3answers
50 views
C++ linker options for DLL (DEF, LIB, etc)
I have downloaded a library for the purposes of writing a program that can uncompress a RAR file. (http://www.rarlab.com/rar/UnRARDLL.exe) This supplies me with unrar.dll, unrar.h, …
0
votes
1answer
36 views
When trying to include ‘#include <boost/regex.hpp>’ I get: 1>LINK : fatal error LNK1104: cannot open file ‘libboost_regex-vc100-mt-gd-1_39.lib’
Not sure why i get that, I downloaded libs from here and while I have a lib called 'libboost_regex-vc90-mt-gd-1_39.lib I don't have one which is called 'libboost_regex-vc100-mt-gd- …
0
votes
0answers
57 views
How to link an arm .o file into an Xcode project
I have a gnu built object file I need to include in an Xcode iPhone project. The .o file format is arm, via 'otool -h':
Mach header
magic cputype cpusubtype caps filetyp …
0
votes
1answer
42 views
Java: High-quality soundpackage
Hello,
Does anyone know a good lib for playing wav, mp3 (and ogg) where I can:
Play
Pause
Play faster
(Slow down)
Play backward (mp3!! or ogg!!)
Edit volume
I want to adjust …
