VR-Vantage 2.8 API Documentation
Home
Modules
Namespaces
Classes
Files
Libraries
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
sensorFx
include
sedllexport.h
Go to the documentation of this file.
1
2
// Copyright JRM Enterprises, Inc. 2006
3
// All rights reserved.
4
//
5
// This code is the intellectual property of JRM Enterprises, Inc.
6
// It may not be used or released as source or compiled binary form
7
// without the prior written consent of JRM Enterprises, Inc.
8
//
9
// Original Authors: Ken George
11
12
13
// The following ifdef block is the standard way of creating macros which make exporting
14
// from a DLL simpler. All files within this DLL are compiled with the SENSOREFFECTSDLL_EXPORTS
15
// symbol defined on the command line. this symbol should not be defined on any project
16
// that uses this DLL. This way any other project whose source files include this file see
17
// SENSOREFFECTSDLL_API functions as being imported from a DLL, wheras this DLL sees symbols
18
// defined with this macro as being exported.
19
#ifdef WIN32
20
#ifdef SENSOREFFECTS_EXPORTS
21
#define SENSOREFFECTS_API __declspec(dllexport)
22
#else
23
#define SENSOREFFECTS_API __declspec(dllimport)
24
#endif
25
#else
26
#define SENSOREFFECTS_API
27
#endif
28
29
/*
30
// This class is exported from the SensorEffectsDll.dll
31
class SENSOREFFECTS_API CSensorEffectsDll {
32
public:
33
CSensorEffectsDll(void);
34
// TODO: add your methods here.
35
};
36
37
extern SENSOREFFECTS_API int nSensorEffectsDll;
38
39
SENSOREFFECTS_API int fnSensorEffectsDll(void);
40
*/
41
Copyright © 2005-2021 MAK Technologies. All Rights Reserved (
www.mak.com
)