library

Process for linking static ObjC libraries in XCode

I'm trying to link to a static library and I keep getting linker errors. I've found a few sites that post examples but I have not been able to see what I am doing wrong. First I create a project that will link to my lib add> existing files find my .xcodeproj file select "Copy items into destination groups folder"... Select my host proj...

C Run-Time library part 2

Hi, I was suggested when I have some further questions on my older ones, to create newer Question and refer to old one. So, this is the original question: What is the C runtime library? OK, from your answers, I now get thet statically linked libraries are Microsoft implementation of C standard functions. Now: If I get it right, the sch...

Custom Document Library

Hello, I'm trying to create a Custom Document Library in Visual Studio 2008 and VSeWSS. The Document Library should have two custom coullums. One I have and the other one is killing me. The one I have holds a reference to a proyectId that I assing thru QueryString and the Event Handler. The one I need is a KeyWord Collumn, so when th...

Howto create an Eclipse Library?

Hi: How do I convert my Eclipse plugin so it is seen in Eclipse as a Libary, like JUnit, for example? Thanks in advance! ...

Which library/config file can I add. Unable to load config class

My application keeps on giving the following error relating to Unable to load config class org.apache.struts2.s1.ActionFormValidationInterceptor. Which jar or config file can I add to make this work? Thanks, 2010-05-11 15:01:04,171 WARN com.opensymphony.xwork2.config.providers.InterceptorBuilder.warn:45 - Unable to load config class ...

Is there any algebra calculation library for .NET?

For example, If I give the it a circle and a square, it can tell me how much area they overlaps. ...

Longest Path in Boost Graph

Hi, Sorry if this is a very basic questions for some of you but I'm new to C++ (let alone Boost Graph Library) and couldn't figure out this problem. So far I've been able to formulate/gather code to create a graph using the code below. Now I'm trying to figure out the code to find the longest path in this graph. Can someone please ...

Aspect Oriented Programming Library/Framework for Actionscript 3?

I'm looking for a full featured AOP Library for Actionscript 3. The following projects I noticed so far, but they all seem to have their problems: - http://farmcode.org/page/Sodality.aspx (looks most promising so far, however it requires you to create a whole new class for every AOP "call" I believe, and it forces you to follow quite a...

Is there a good free wavelet library for .NET?

Fast is good and support for wide range of wavelet families is also good. ...

Report.NET TableLayoutManager example needed

Hi all Has anyone used the Report.NET library from http://report.sourceforge.net/ to create PDF documents? There is no example code for the TableLayoutManager and the API is confusing the hell out of me. Can anyone point me to some example code? Thanks David ...

How to execute unknown functions from dynamic load libraries?

It's easy to load functions from dynamic libraries when you know this function in design time. just do something like this: int (*fn)(int); l0 = dlopen("./libfoo.so", RTLD_LAZY); if (!l0) { fprintf(stderr, "l0 %s\n", dlerror()); return 1; } fn = (int (*)(int))dlsym(l0, "foo"); if ((error = dlerror(...

Logging library with integrated log parser generator.

What I'm thinking of is a library/system that can generate a log parser from my usages of the logging library or that generates both a customized logging API and a matching parser. The end result I'd like is that I Just do my logging and somehow, out the other end pops a library/tool I can use for processing the logs I just generated. ...

Why does my Visual C++ .exe project build create .lib and .exp files?

I have a solution consisting of 3 projects. One is a static library, and two are console-based .exe files that depend on and link against this library. Their settings seem to be identical. I build one of them: 1>------ Build started: Project: masksample, Configuration: Debug Win32 ------ 1>Compiling... 1>stdafx.cpp 1>Compiling....

Moving on from Hello world style simple programs to big / real world projects : A guide to real world projects

Somebody please re-tag with appropriate tags Hello, This is my story but I guess it holds true for all programmers. We begin programming with some simple Hello World program. We practice & add functions/classes to the program. But they still maintain the Hello World style. function calling some other functions standard library. But w...

Video tool to split video and audio in video stream

I am starting research on Video Indexing. Any suggestion which Programming libraries I could use to split the Audio and Video Streams? ...

Java Equivalent of C++ .dll?

So, I've been programming for a while now, but since I haven't worked on many larger, modular projects, I haven't come across this issue before. I know what a .dll is in C++, and how they are used. But every time I've seen similar things in Java, they've always been packaged with source code. For instance, what would I do if I wanted ...

Good JS lib to take screenshot of the screen

Hey, I want my users to be able to take a screenshot of the webpage (or me defining the size of the screenshot) and then allowing them to save it to their computer. Does anyone know of a good JS lib that allows you to do this? I know there are addons for the browser, but i wanted something pure JS so that the user can just click in a ...

.NET Framework Class Library Documentation

Developing in .NET 3.5. Recently my well-worn link to the .NET Framework 3.5 Class Library documentation (http://msdn.microsoft.com/en-us/library/ms229335.aspx) started taking me to the .NET 4.0 docs. This is a bit of a nuisance, because I'm not interested in .NET 4.0 (yet)--the project I'm working on is in 3.5. Previous versions of the...

Swing based 2D graphics library for Text

Is there a library that would give me 2D graphics with a focus on Text for Swing. I am building a simple form designer and need to position text correctly on a 2D display. It would be nice if there was a library that handled the newlines and possibly editing. ...

Rakefile rule output generation problem.

Hi all, i have a Rakefile with a rule like this : rule '.so' => '.cc' do |t| puts "@ Compiling #{t.source}" output = t.source.ext("so") output['stdlib'] = 'build' sh "mkdir -p #{File.dirname(output)}" sh "#{CXX} #{t.source} -o#{output} #{STDLIB_CFLAGS} #{STDLIB_LFLAGS}" end As you can see, it generates many .so lib...