~registry/dolphin-emu/triforce

« back to all changes in this revision

Viewing changes to Externals/CLRun/include/clrun.h

  • Committer: Sérgio Benjamim
  • Date: 2015-02-13 05:54:40 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20150213055440-ey2rt3sjpy27km78
Dolphin Triforce branch from code.google, commit b957980 (4.0-315).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __CLRUN_H
 
2
#define __CLRUN_H
 
3
 
 
4
/*#ifdef _WIN32
 
5
#ifdef CLRUN_COMPILE
 
6
#define EXPORTED __declspec(dllexport)
 
7
#else
 
8
#define EXPORTED __declspec(dllimport)
 
9
#endif
 
10
#else*/
 
11
#define EXPORTED
 
12
//#endif
 
13
 
 
14
#ifdef __cplusplus
 
15
extern "C" {
 
16
#endif
 
17
        
 
18
extern EXPORTED int clrInit();
 
19
extern EXPORTED int clrHasOpenCL();
 
20
        
 
21
#ifdef __cplusplus
 
22
};
 
23
#endif
 
24
 
 
25
#endif