Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • videolan/vlc-winrt
  • huynhsontung/vlc-winrt
  • robUx4/vlc-winrt
  • chouquette/vlc-winrt
  • mfkl/vlc-winrt
  • AgentCooper/vlc-winrt
  • Ln1052/vlc-winrt
  • massijay/vlc-winrt
  • vlasenkoalexey/vlc-winrt
  • dagnangreg/vlc-winrt
  • thresh/vlc-winrt
  • m/vlc-winrt
  • bogacnutctk/vlc-winrt
  • slomkaro22/vlc-winrt
14 results
Show changes
Commits on Source (2)
......@@ -7,6 +7,8 @@ _You can find the official repository [here](https://code.videolan.org/videolan/
It's currently written in C# and uses [libvlcpp](https://code.videolan.org/videolan/libvlcpp) (C++) and
[libvlcppcx](https://code.videolan.org/videolan/vlc-winrt/tree/master/modules/libvlcppcx) (C++/CX) for interop with managed code.
#### ⚠️ ⚠️ ⚠️ Status update: The VLC for WinRT app is retired (deprecated), there is no more development being done on it. We advice you to use the classic VLC app instead. For UWP support in your LibVLC apps, have a look at [libvlcsharp](https://code.videolan.org/videolan/LibVLCSharp).
- [Requirements](#requirements)
- [Building](#building)
- [VLC-WinRT](#vlc-winrt)
......
......@@ -40,7 +40,7 @@ seek F, 20 + 70, 1;
my $flags = get_le(2);
seek F, -2, 1;
$flags |= 0x1000; # App Container
$flags |= 0x1400; # App Container and NO SEH
printf F "%c%c", $flags & 0xff,($flags >> 8) & 0xff;
......