lib

AS3 Core Lib and Adobe Air update frameowork conflicts

Hello i am working on an Adobe air html/ajax application in which i need as3Core lib and Air update framework. Update framework work only if I remove as3Corelib from my code. But they both are essential for my project. Btw i am using only JpegEncoder from as3Core lib. Thanks For reading :) ...

dependencies linking isnt enough?

In Visual Studio (C++) the other day, I was trying to build some example code and it would not work, even though I was pointing at the right include and lib directories. (I got linker errors) I asked a friend who fixed the problem by specifying the necessary .lib files in the General Properties->Linker->Input field of the project settin...

.lib and .dll Backward Compatibility

I currently have a VS6 unmanaged C library that I deliver as either a .lib or .dll. I want to upgrade to VS2010 but I still have users that are in VS6, VS2005, and VS2008. Can a .lib or .dll built in VS2010 be used in VS6, VS2005, or VS2008? Thanks! ...

Converting COFF lib file to OMF format

Hello Is there any way to convert COFF library (lib file) to OMF library for using with C++Builder6 ? This coff is not just import library, it conatians some code. When I try to convert it using borland's coff2omf.exe, I get 1KB file from 15KB file. ...

Python library to extract 'epub' information

I'm trying to create a epub uploader to iBook in python. I need a python lib to extract book information. Before implementing this by myself I wonder if anyone know a already made python lib that does it. Thanks ...

Is a C .lib file platform specific?

I'm trying to use an API for a proprietary interface device on an embedded system (Freescale HCS08), and the provided files include headers (.h) and libraries (.lib). The header compiles fine with the rest of my code (standard C), but when trying to link against the library I get memory errors saying the file might be corrupted. My und...

Ruby on Rails - access user defined lib functions in /lib/login_system.rb from app/views/layouts/_menu.rhtml

I have defined a function called is_logged_in? in a user defined library stored in the /lib directory, however when I try to use it in one of my views (in this case a _menu.html.erb view) I get a "undefined method `is_logged_in?' for #" error. I had assumed that if the method was available within the /lib directory then it would be acces...

Why does curl require both .lib and .dll to work?

I just downloaded curl and managed to build a programe with it. What I don't understand is why it requires both curllib.lib and curllib.dll ? In my opinion either curllib.lib or curllib.dll should be enough, why both? Also I've searched through the source but doesn't find anywhere it uses dlopen to load curllib.dll, so why is curllib....

how to parse a geo-rss.xml ,any python lib to do this ?

i want to get the content of the geo-rss any python lib to do this ? thanks ...

which is the best javascript lib for google maps and iphone ..

i want to develop a map site on iphone use google maps v3 thanks updated i find one :PastryKit which i think better than iui and jqtouch , but i can't find its doc , so did you know the PastryKit's doc ? ...

Can I include *.xslt in ASP.NET class library for internal use?

I want to use same xsl template in few websites. Can I add it into class library? If yes how can I Load it? Example of path, etc... ...

How to Link to a .lib file in Visual C++ 2010? Without referencing the project?

Hey Guys, I just have a problem that I have been trying to fix for the longest time. I have a static library project in visual c++, and I want another project to be able to link to it. Up until now, I have simply been adding a reference to the static library project, which automatically links the library. I want to be able to link to ...

C# Lib to query MySQL DB

Hi Guys, Is there any good nice library to query MySQL DB? I have mysql connector .net installed, and it basically gives me ado.net replaced, like MySQLCommand, MySQLAdapter etc MySqlCommand command = connection.CreateCommand (); command.CommandText = "select * from samples"; but you have to write a lot of code anyway, is there any l...

What's the format of .lib in windows?

AFAIK, .dll is in PE format, what about .lib? ...

Installing jar file to Tomcat web application

How do I install a 3rd party JAR file to my tomcat web application? I have placed it in every folder I can think of, and am referencing it like: import com.google.api.translate; Is there a particular folder? I have tried WEB_INF/lib ...

how to add zlib to an existing qt installation

How can I add zlib to an existing installation of Qt. I m pretty new in this so please give me detailed description! Thanks for your help in advance! ...

Ruby Strange Error

Whenever I require a file in ruby or irb I get this error: LoadError: no such file to load -- (insert any filename).rb from <internal:lib/rubygems/custom_require>:29:in `require' from <internal:lib/rubygems/custom_require>:29:in `require' from (irb):1 from /usr/bin/irb1.9.1:12:in `<main>' It happens even if the file ex...

Converting static linked library to dynamic linked library under windows

I am in the midst of evaluating the benefits of changing our program from 30+ statically linked libraries to 30+ dynamically linked libraries. We hope by changing to DLL, it will reduce the link time. One immediate problem is the requirement to add __declspec in front of all the classes to create the lib file for other dlls to link. I...