~ubuntu-branches/ubuntu/jaunty/pcsc-lite/jaunty-security

« back to all changes in this revision

Viewing changes to pcsc-lite/src/PCSC/dyn_generic.h

  • Committer: Bazaar Package Importer
  • Author(s): Ludovic Rousseau
  • Date: 2005-11-27 18:04:59 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051127180459-qrex2gzpq9d8jexd
Tags: 1.2.9-beta9-1
* New upstream version
* debian/compat: change from 3 to 4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * This abstracts dynamic library loading functions.
3
 
 *
4
 
 * MUSCLE SmartCard Development ( http://www.linuxnet.com )
5
 
 *
6
 
 * Copyright (C) 1999
7
 
 *  David Corcoran <corcoran@linuxnet.com>
8
 
 *
9
 
 * $Id: dyn_generic.h,v 1.3 2003/10/18 17:19:36 aet-guest Exp $
10
 
 */
11
 
 
12
 
#ifndef __dyn_generic_h__
13
 
#define __dyn_generic_h__
14
 
 
15
 
#ifdef __cplusplus
16
 
extern "C"
17
 
{
18
 
#endif
19
 
 
20
 
        int DYN_LoadLibrary(void **, char *);
21
 
        int DYN_CloseLibrary(void **);
22
 
        int DYN_GetAddress(void *, void **, char *);
23
 
 
24
 
#ifdef __cplusplus
25
 
}
26
 
#endif
27
 
 
28
 
#endif