~ubuntu-branches/debian/stretch/openbabel/stretch

« back to all changes in this revision

Viewing changes to src/formats/inchi/inchi_dll_main.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2008-07-22 23:54:58 UTC
  • mfrom: (3.1.10 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080722235458-3o606czluviz4akx
Tags: 2.2.0-2
* Upload to unstable.
* debian/control: Updated descriptions.
* debian/patches/gauss_cube_format.patch: New patch, makes the 
  gaussian cube format available again.
* debian/rules (DEB_DH_MAKESHLIBS_ARGS_libopenbabel3): Removed.
* debian/rules (DEB_CONFIGURE_EXTRA_FLAGS): Likewise.
* debian/libopenbabel3.install: Adjust formats directory to single 
  version hierarchy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * International Union of Pure and Applied Chemistry (IUPAC)
3
 
 * International Chemical Identifier (InChI)
4
 
 * Version 1
5
 
 * Software version 1.01
6
 
 * May 16, 2006
7
 
 * Developed at NIST
8
 
 */
9
 
 
10
 
#ifndef __INCHI_DLL_MAIN_H__
11
 
#define __INCHI_DLL_MAIN_H__
12
 
 
13
 
#if _MSC_VER > 1000
14
 
#pragma once
15
 
#endif /* _MSC_VER > 1000 */
16
 
 
17
 
#if defined(_WIN32) && defined(_MSC_VER) && defined(_USRDLL)
18
 
 
19
 
/*#define WIN32_LEAN_AND_MEAN */  /* Exclude rarely-used stuff from Windows headers */
20
 
#include <windows.h>
21
 
 
22
 
#define  INCHI_DLLMAIN_TYPE APIENTRY
23
 
 
24
 
#else  /* not a Win32 DLL under MS VC++ */
25
 
 
26
 
#define  INCHI_DLLMAIN_TYPE
27
 
 
28
 
#endif
29
 
 
30
 
 
31
 
#endif /* __INCHI_DLL_MAIN_H__ */
 
 
b'\\ No newline at end of file'