This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
csproj file: | |
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFrameworks>netcoreapp3.1;netstandard2.0</TargetFrameworks> | |
<IncludeBuildOutput>false</IncludeBuildOutput> | |
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences> | |
<NuspecFile>mycontent.nuspec</NuspecFile> | |
</PropertyGroup> | |
</Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace LibNative | |
{ | |
using System.Runtime.InteropServices; | |
public static partial class libnative | |
{ | |
/// <summary> | |
/// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\src>mkdir BasePath | |
C:\src>fsutil.exe file setCaseSensitiveInfo BasePath enable | |
Case sensitive attribute on directory C:\src\BasePath is enabled. | |
C:\src>cd BasePath | |
C:\src\BasePath>mkdir one | |
C:\src\BasePath>fsutil.exe file setCaseSensitiveInfo one enable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "stdafx.h" | |
#include "sqlite_orm.h" | |
#include <string> | |
#include <iostream> | |
#include <vector> | |
using std::cout; | |
using std::endl; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using SharpDX.Direct3D9; | |
using SharpDX.Multimedia; | |
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Runtime.InteropServices; | |
using System.Threading.Tasks; | |
using System.Windows; | |
using System.Windows.Interop; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include "uv.h" | |
const char* probe_message = "<Envelope xmlns=\"http://www.w3.org/2003/05/soap-envelope\" xmlns:dn=\"http://www.onvif.org/ver10/network/wsdl\">" | |
"<Header>" | |
"<wsa:MessageID xmlns:wsa=\"http://schemas.xmlsoap.org/ws/2004/08/addressing\">urn:uuid:C97CF2F7-615A-493C-88FE-7D39B94906E0</wsa:MessageID>" | |
"<wsa:To xmlns:wsa=\"http://schemas.xmlsoap.org/ws/2004/08/addressing\">urn:schemas-xmlsoap-org:ws:2005:04:discovery</wsa:To>" | |
"<wsa:Action xmlns:wsa=\"http://schemas.xmlsoap.org/ws/2004/08/addressing\">http://schemas.xmlsoap.org/ws/2005/04/discovery/Probe</wsa:Action>" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From e0eb0152371327a54bf6cf209a600bb21896e34e Mon Sep 17 00:00:00 2001 | |
From: Jeremiah Morrill <[email protected]> | |
Date: Wed, 25 Jan 2017 22:04:15 -0800 | |
Subject: [PATCH 107/107] Chose to create IDirect3DDevice9Ex if available | |
--- | |
libavutil/hwcontext_dxva2.c | 46 ++++++++++++++++++++++++++++++++++++--------- | |
1 file changed, 37 insertions(+), 9 deletions(-) | |
diff --git a/libavutil/hwcontext_dxva2.c b/libavutil/hwcontext_dxva2.c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <functional> | |
#include <string> | |
int main() | |
{ | |
std::string test_string = "abcde"; | |
auto function1 = [=, test_string = std::move(test_string)] | |
{ | |
auto test_string2 = std::move(test_string); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ConsoleApplication1.cpp : Defines the entry point for the console application. | |
// | |
#include "stdafx.h" | |
#include <stdint.h> | |
#include <vector> | |
#include <algorithm> | |
#include <filesystem> | |
#include <random> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/////VS 2013 ///// | |
////////////////// | |
#include "stdafx.h" | |
#include <assert.h> | |
#include <thread> | |
#define __thread_local __declspec(thread) | |
const int some_int = 5; |
NewerOlder