summaryrefslogtreecommitdiffstats
path: root/gfx/vr/vrhost/vrhostex.h
blob: 70f4f98fbacb8f05395b618ea25c6d143500db36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

// vrhostex.h
// This file declares the functions and their typedefs for functions exported
// by vrhost.dll

#pragma once
#include <stdint.h>

// void SampleExport();
typedef void (*PFN_SAMPLE)();

typedef void (*PFN_CREATEVRWINDOW)(char* firefoxFolderPath,
                                   char* firefoxProfilePath,
                                   uint32_t dxgiAdapterID, uint32_t widthHost,
                                   uint32_t heightHost, uint32_t* windowId,
                                   void** hTex, uint32_t* width,
                                   uint32_t* height);

typedef void (*PFN_CLOSEVRWINDOW)(uint32_t nVRWindowID, bool waitForTerminate);

typedef void (*PFN_SENDUIMSG)(uint32_t nVRWindowID, uint32_t msg,
                              uint64_t wparam, uint64_t lparam);

typedef void (*PFN_WAITFORVREVENT)(uint32_t& nVRWindowID, uint32_t& eventType,
                                   uint32_t& eventData1, uint32_t& eventData2);

typedef void (*PFN_SENDVRTELEMETRY)(uint32_t nVRWindowID, uint32_t telemetryId,
                                    uint32_t value);