File: libtest.h

package info (click to toggle)
libffi-platypus-perl 2.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,860 kB
  • sloc: perl: 7,388; ansic: 6,862; cpp: 53; sh: 19; makefile: 14
file content (16 lines) | stat: -rw-r--r-- 214 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef LIBTEST_H
#define LIBTEST_H

#include "ffi_platypus.h"

#ifdef HAVE_STDIO_H
#include <stdio.h>
#endif

#ifdef _MSC_VER
#define EXTERN extern __declspec(dllexport)
#else
#define EXTERN extern
#endif

#endif