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

« back to all changes in this revision

Viewing changes to pcsc-lite/win32/PCSC.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
 
// The following ifdef block is the standard way of creating macros which make exporting 
3
 
// from a DLL simpler. All files within this DLL are compiled with the PCSC_EXPORTS
4
 
// symbol defined on the command line. this symbol should not be defined on any project
5
 
// that uses this DLL. This way any other project whose source files include this file see 
6
 
// PCSC_API functions as being imported from a DLL, wheras this DLL sees symbols
7
 
// defined with this macro as being exported.
8
 
#ifdef PCSC_EXPORTS
9
 
#define PCSC_API __declspec(dllexport)
10
 
#else
11
 
#define PCSC_API __declspec(dllimport)
12
 
#endif
13
 
 
14
 
// This class is exported from the PCSC.dll
15
 
//class PCSC_API CPCSC {
16
 
//public:
17
 
//      CPCSC(void);
18
 
//      // TODO: add your methods here.
19
 
//};
20
 
 
21
 
//extern PCSC_API int nPCSC;
22
 
 
23
 
//PCSC_API int fnPCSC(void);
24