loadYOURSELF

loadYOURSELF

Browsing Posts tagged library

jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript.
* Lightweight Footprint
About 24KB in size (Minified and Gzipped)

* CSS3 Compliant
Supports CSS 1-3 selectors and more!

* Cross-browser
IE 6.0+, FF 2+, Safari 3.0+, Opera 9.0+, Chrome


Download Page & More Information

Buy me a beer

ARM has released highly optimized source code versions of the OpenMAX DL (Development Layer) libraries for decoding the AAC and MP3 formats in the audio domain, and decoding the MPEG-4 and H.264 formats in the video domain. These functions can be downloaded free-of-charge from the ARM website http://www.arm.com/products/esd/openmax_home.html, and the license granted to these functions entitles the user to integrate them into their own products at no cost.

ARMONK, NY: IBM announced new first-to-market information infrastructure platform offerings and enhancements across a broad range of its disk and tape storage portfolio. Targeting clients that range from small and medium businesses (SMB) to large enterprises, the new solutions allow customers to implement a more efficient tiered storage infrastructure and achieve improved cost savings, integrated data security, and enhanced archival solutions to meet compliance requirements and have an infrastructure that delivers information on demand.

Shared library file
b.c

#include

void b_printer ()
{
printf (“Printing something from a shared library.n”);
}

gcc -fPIC -shared -o b.so b.c

Prototypes for the Shared Library Functions Found in dlfcn.h

void* dlopen (const char* filename, int flag);
const char* dlerror (void);
void* dlsym (void* handle, char* symbol);

  1. Open the shared library by using dlopen().
  2. Check that the open succeeded by using dlerror().
  3. Get the function that you want by using dlsym().