20 lines
446 B
Plaintext
20 lines
446 B
Plaintext
// ----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// ----------------------------------------------------------------------------
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Microsoft.Win32
|
|
{
|
|
[RequiredByBartok]
|
|
public class Win32Native
|
|
{
|
|
public Win32Native();
|
|
|
|
public void Nothing();
|
|
}
|
|
}
|
|
|