mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-27 23:44:47 +00:00
Version: Reformat
This commit is contained in:
parent
1ce354b51f
commit
a53cb1c911
1 changed files with 47 additions and 44 deletions
|
@ -25,15 +25,18 @@
|
|||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Gst {
|
||||
public static class Version {
|
||||
namespace Gst
|
||||
{
|
||||
public static class Version
|
||||
{
|
||||
private static uint major;
|
||||
private static uint minor;
|
||||
private static uint micro;
|
||||
private static uint nano;
|
||||
private static string version_string;
|
||||
|
||||
static Version() {
|
||||
static Version ()
|
||||
{
|
||||
gst_version (out major, out minor, out micro, out nano);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue