VR-Engage  2.2
Loading...
Searching...
No Matches
plugin.h
Go to the documentation of this file.
1/*******************************************************************************
2** Copyright (c) 2024 MAK Technologies
3** All rights reserved.
4*******************************************************************************/
5
6#pragma once
7
8#ifdef _WIN32
9 #ifdef notification_EXPORTS
10 #define NOTIFICATION_DLL __declspec(dllexport)
11 #else
12 #define NOTIFICATION_DLL __declspec(dllimport)
13 #endif
14#else
15 #define NOTIFICATION_DLL
16#endif
17
18// forward declare the Player Station App
19namespace makVre
20{
21class DtPlayerStationApp;
22}
23
24// The plugin loading function
25extern "C"
26{
28};
Top-level class representing the VR-Engage application.
Definition playerStationApp.h:163
COMMENTFRONTEND_DLL bool initPlayerStationModule(makVre::DtPlayerStationApp *app)
Entry point called by the player station framework to register the example frontend comment logic com...
#define NOTIFICATION_DLL
Definition plugin.h:15
Include export definitions for this library.
Definition glsVreMessageUtil.h:49