~ubuntu-branches/ubuntu/raring/sip-tester/raring

« back to all changes in this revision

Viewing changes to comp.c

  • Committer: Bazaar Package Importer
  • Author(s): ARAKI Yasuhiro
  • Date: 2005-04-11 11:53:53 UTC
  • Revision ID: james.westby@ubuntu.com-20050411115353-o33qn3noyjwjgnpd
Tags: upstream-1.1rc1
ImportĀ upstreamĀ versionĀ 1.1rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  This program is free software; you can redistribute it and/or modify
 
3
 *  it under the terms of the GNU General Public License as published by
 
4
 *  the Free Software Foundation; either version 2 of the License, or
 
5
 *  (at your option) any later version.
 
6
 *
 
7
 *  This program is distributed in the hope that it will be useful,
 
8
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
 *  GNU General Public License for more details.
 
11
 *
 
12
 *  You should have received a copy of the GNU General Public License
 
13
 *  along with this program; if not, write to the Free Software
 
14
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
15
 *
 
16
 *  Copyright (C) 2003 - The Authors
 
17
 *
 
18
 *  Author : Richard GAYRAUD - 04 Nov 2003
 
19
 *           From Hewlett Packard Company.
 
20
 *
 
21
 */
 
22
 
 
23
#define COMP_MAIN
 
24
#include "comp.h"
 
25
 
 
26
#include <dlfcn.h>
 
27
#include <string.h>
 
28
 
 
29
char * comp_load()
 
30
{
 
31
  void *handle;
 
32
  char *error;
 
33
 
 
34
  comp_error[0] = 0;
 
35
  
 
36
  handle = dlopen(COMP_PLUGGIN, RTLD_LAZY);
 
37
  if (!handle) {
 
38
    strcpy(comp_error, dlerror());
 
39
    return comp_error;
 
40
  }
 
41
  
 
42
  *(void **)(&comp_compress) = dlsym(handle, "comp_compress");
 
43
  if((error = dlerror()))  
 
44
    { strcpy(comp_error, error); return comp_error; }
 
45
  
 
46
  *(void **)(&comp_uncompress) = dlsym(handle, "comp_uncompress");
 
47
  if((error = dlerror()))  
 
48
    { strcpy(comp_error, error); return comp_error; }
 
49
  
 
50
  *(void **)(&comp_free) = dlsym(handle, "comp_free");
 
51
  if((error = dlerror()))  
 
52
    { strcpy(comp_error, error); return comp_error; }
 
53
  
 
54
  return 0;
 
55
}