summaryrefslogtreecommitdiffstats
path: root/gfx/vr/vrhost/testhost/testhost.cpp
blob: ae667aaee46e85902ad2e51a0594ca2802d8fd96 (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
34
35
36
37
38
39
40
41
42
43
/* -*- 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/. */

#include <windows.h>
#include "vrhost/vrhostex.h"

int main(int argc, char* argv[], char* envp[]) {
  HINSTANCE hVR = ::LoadLibraryW(L"vrhost.dll");
  if (hVR != nullptr) {
    // Sometimes LoadLibrary can set an error, but, if it returns a handle,
    // then it succeeded. Clear the last error so that subsequent calls to
    // GetLastError don't improperly attribute failure to another API.
    ::SetLastError(0);

    PFN_SAMPLE lpfnSample = (PFN_SAMPLE)GetProcAddress(hVR, "SampleExport");
    if (lpfnSample != nullptr) {
      lpfnSample();
    }

    if (strcmp(argv[1], "-testsvc") == 0) {
      PFN_SAMPLE lpfnService =
          (PFN_SAMPLE)GetProcAddress(hVR, "TestTheService");

      lpfnService();
    } else if (strcmp(argv[1], "-testmgr") == 0) {
      PFN_SAMPLE lpfnManager =
          (PFN_SAMPLE)GetProcAddress(hVR, "TestTheManager");
      lpfnManager();
    } else if (strcmp(argv[1], "-testvrwin") == 0) {
      PFN_SAMPLE lpfnManager =
          (PFN_SAMPLE)GetProcAddress(hVR, "TestCreateVRWindow");
      lpfnManager();
    }

    ::FreeLibrary(hVR);
    hVR = nullptr;
  }

  return 0;
}