Now fetching some of our Sound Graph DLL function pointers.
3 This Source Code Form is subject to the terms of the Mozilla Public
4 License, v. 2.0. If a copy of the MPL was not distributed with this
5 file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 Copyright (C) 2011 Michael Möller <mmoeller@openhardwaremonitor.org>
12 using System.Collections.Generic;
14 namespace OpenHardwareMonitor.Collections {
16 public struct Pair<F, S> {
20 public Pair(F first, S second) {
27 set { first = value; }
31 get { return second; }
32 set { second = value; }
35 public override int GetHashCode() {
36 return (first != null ? first.GetHashCode() : 0) ^
37 (second != null ? second.GetHashCode() : 0);