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

« back to all changes in this revision

Viewing changes to src/powermgt_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
 * MUSCLE SmartCard Development ( http://www.linuxnet.com )
 
3
 *
 
4
 * Copyright (C) 2002
 
5
 *  David Corcoran <corcoran@linuxnet.com>
 
6
 *
 
7
 * $Id: powermgt_generic.h 1421 2005-04-12 12:09:21Z rousseau $
 
8
 */
 
9
 
 
10
/**
 
11
 * @file
 
12
 * @brief This handles power management routines.
 
13
 */
 
14
 
 
15
#ifndef __powermgt_generic_h__
 
16
#define __powermgt_generic_h__
 
17
 
 
18
#ifdef __cplusplus
 
19
extern "C"
 
20
{
 
21
#endif
 
22
 
 
23
 
 
24
/* 
 
25
 * Registers for Power Management callbacks 
 
26
 */
 
27
 
 
28
ULONG PMRegisterForPowerEvents(void);
 
29
 
 
30
 
 
31
#ifdef __cplusplus
 
32
}
 
33
#endif
 
34
 
 
35
#endif