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

« back to all changes in this revision

Viewing changes to src/hotplug.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
 * MUSCLE SmartCard Development ( http://www.linuxnet.com )
 
3
 *
 
4
 * Copyright (C) 2000-2003
 
5
 *  David Corcoran <corcoran@linuxnet.com>
 
6
 *
 
7
 * $Id: hotplug.h 1538 2005-05-26 14:48:00Z rousseau $
 
8
 */
 
9
 
 
10
/**
 
11
 * @file
 
12
 * @brief This provides a search API for hot pluggble devices.
 
13
 */
 
14
 
 
15
#ifndef __hotplug_h__
 
16
#define __hotplug_h__
 
17
 
 
18
#ifdef __cplusplus
 
19
extern "C"
 
20
{
 
21
#endif
 
22
 
 
23
#ifndef PCSCLITE_HP_DROPDIR
 
24
#define PCSCLITE_HP_DROPDIR             "/usr/local/pcsc/drivers/"
 
25
#endif
 
26
 
 
27
#define PCSCLITE_HP_MANUKEY_NAME        "ifdVendorID"
 
28
#define PCSCLITE_HP_PRODKEY_NAME        "ifdProductID"
 
29
#define PCSCLITE_HP_NAMEKEY_NAME        "ifdFriendlyName"
 
30
#define PCSCLITE_HP_LIBRKEY_NAME        "CFBundleExecutable"
 
31
 
 
32
#define PCSCLITE_HP_BASE_PORT           0x200000
 
33
 
 
34
        LONG HPSearchHotPluggables(void);
 
35
        ULONG HPRegisterForHotplugEvents(void);
 
36
        LONG HPStopHotPluggables(void);
 
37
        void HPReCheckSerialReaders(void);
 
38
 
 
39
#ifdef __cplusplus
 
40
}
 
41
#endif
 
42
 
 
43
#endif