├── .gitattributes ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── deps ├── Mono.Options │ └── Mono.Options.dll ├── NUnit │ ├── nunit.framework.dll │ └── nunit.framework.xml ├── System.Reflection.Metadata │ ├── System.Collections.Immutable.dll │ └── System.Reflection.Metadata.dll ├── build_llvm_clang_linux.sh ├── build_llvm_clang_vs2012.bat ├── build_llvm_clang_vs2013_x32.bat └── build_llvm_clang_vs2013_x64.bat ├── docs └── GettingStarted.md └── src ├── CMakeLists.txt ├── SharpLLVM.Native ├── Additional.cpp ├── Additional.h ├── DebugInfo.cpp ├── DebugInfo.h ├── LLVM_wrap.cpp ├── SharpLLVM.Native.vcxproj ├── SharpLLVM.Native.vcxproj.filters ├── premake4.lua └── stdbool.h ├── SharpLLVM.Tests ├── Properties │ └── AssemblyInfo.cs ├── SharpLLVM.Tests.csproj ├── TestLLVM.cs └── premake4.lua ├── SharpLLVM ├── Additional │ ├── DIDescriptor.cs │ ├── Intrinsics.cs │ ├── Intrinsics.tt │ ├── TypeRef.cs │ └── ValueRef.cs ├── AtomicOrdering.cs ├── AtomicRMWBinOp.cs ├── Attribute.cs ├── BasicBlockRef.cs ├── Bindings │ ├── LLVM.i │ ├── LLVMCommon.i │ └── generate.bat ├── BuilderRef.cs ├── ByteOrdering.cs ├── CallConv.cs ├── CodeGenFileType.cs ├── CodeGenOptLevel.cs ├── CodeModel.cs ├── ContextRef.cs ├── DIBuilderRef.cs ├── DIDescriptor.cs ├── DLLStorageClass.cs ├── DiagnosticInfoRef.cs ├── DiagnosticSeverity.cs ├── IntPredicate.cs ├── LLVM.cs ├── LLVMPINVOKE.cs ├── LandingPadClauseTy.cs ├── Linkage.cs ├── MemoryBufferRef.cs ├── MemoryTargetRef.cs ├── ModuleProviderRef.cs ├── ModuleRef.cs ├── Opcode.cs ├── PassManagerBuilderRef.cs ├── PassManagerRef.cs ├── PassRegistryRef.cs ├── Properties │ └── AssemblyInfo.cs ├── RealPredicate.cs ├── RelocMode.cs ├── SWIGTYPE_p_f_p_q_const__char__void.cs ├── SWIGTYPE_p_unsigned_int.cs ├── SharpLLVM.csproj ├── TargetDataRef.cs ├── TargetLibraryInfoRef.cs ├── TargetMachineRef.cs ├── TargetRef.cs ├── ThreadLocalMode.cs ├── TypeKind.cs ├── TypeRef.cs ├── UseRef.cs ├── ValueRef.cs ├── VerifierFailureAction.cs ├── Visibility.cs └── premake4.lua ├── SharpLang.Compiler.Tests ├── Properties │ └── AssemblyInfo.cs ├── SharpLang.Compiler.Tests.csproj ├── TestFiles.cs ├── premake4.lua ├── tests-codegen │ ├── MiniCorlib.cpp │ ├── SimpleArray.cs │ ├── SimpleArrayImplicit.cs │ ├── SimpleArrayInitializer.cs │ ├── SimpleArrayStruct.cs │ ├── SimpleArrayUnsafe.cs │ ├── SimpleBoxing.cs │ ├── SimpleBoxingCallvirt.cs │ ├── SimpleBranching1.cs │ ├── SimpleBranching2.cs │ ├── SimpleBranching3.cs │ ├── SimpleBranching4.cs │ ├── SimpleBranching5.cs │ ├── SimpleCallBoolean.cs │ ├── SimpleCallByRef.cs │ ├── SimpleCallString.cs │ ├── SimpleClassCast.cs │ ├── SimpleClassField.cs │ ├── SimpleClassFieldInheritance.cs │ ├── SimpleClassIs.cs │ ├── SimpleClassProperty.cs │ ├── SimpleClassStatic.cs │ ├── SimpleClassVirtualCall.cs │ ├── SimpleComparison.cs │ ├── SimpleDelegate.cs │ ├── SimpleEnum.cs │ ├── SimpleException1.cs │ ├── SimpleFaultHandler.il │ ├── SimpleFloatArithmetic.cs │ ├── SimpleGenericClass.cs │ ├── SimpleGenericClass2.cs │ ├── SimpleGenericConstrained.cs │ ├── SimpleGenericFunction.cs │ ├── SimpleGenericFunction2.cs │ ├── SimpleIntegerArithmetic.cs │ ├── SimpleIntegerArithmeticOverflow.cs │ ├── SimpleInterface.cs │ ├── SimpleInterface2.cs │ ├── SimpleInterface3.cs │ ├── SimpleInterface4.cs │ ├── SimpleLocal.cs │ ├── SimplePInvoke.cs │ ├── SimpleStaticCtor.cs │ ├── SimpleStruct.cs │ ├── SimpleStructLayout.cs │ ├── SimpleStructNewobj.cs │ ├── SimpleSwitch.cs │ └── WriteLine.cs ├── tests-corlib │ ├── Reflection1.cs │ ├── SimpleMulticastDelegate.cs │ └── WriteLine.cs └── tests-pinvoke │ ├── PInvokeCallback.cs │ ├── PInvokeStructWithSmallFields.cs │ └── PInvokeTest.cpp ├── SharpLang.Compiler ├── ABIParameterInfo.cs ├── ABIParameterInfoKind.cs ├── App.config ├── Cecil │ ├── CecilExtensions.TypeMap.cs │ ├── CecilExtensions.cs │ ├── CustomAssemblyResolver.cs │ ├── ResolveGenericsVisitor.cs │ └── TypeReferenceVisitor.cs ├── Class.cs ├── Compiler.Class.cs ├── Compiler.CommonTypes.cs ├── Compiler.Delegate.cs ├── Compiler.Emit.cs ├── Compiler.Function.cs ├── Compiler.MarkExternals.cs ├── Compiler.Options.cs ├── Compiler.PInvoke.cs ├── Compiler.Scope.cs ├── Compiler.StackConversion.cs ├── Compiler.Type.cs ├── Compiler.cs ├── DefaultABI.cs ├── Driver.cs ├── ExceptionHandlerInfo.cs ├── ExtraTypeKind.cs ├── Field.cs ├── FlowingNextInstructionMode.cs ├── Function.cs ├── FunctionCompilerContext.cs ├── FunctionParameterType.cs ├── FunctionSignature.cs ├── FunctionStack.cs ├── IABI.cs ├── InstructionFlags.cs ├── Marshalling │ ├── ArrayMarshaller.cs │ ├── BlittableArrayMarshaller.cs │ ├── BlittableMarshaller.cs │ ├── BooleanMarshaller.cs │ ├── ByReferenceMarshalledObjectEmitter.cs │ ├── DelegateMarshaller.cs │ ├── FakeMarshalledObjectEmitter.cs │ ├── FieldMarshalledObjectEmitter.cs │ ├── HandleRefMarshaller.cs │ ├── MarshalCodeContext.cs │ ├── MarshalCodeGenerator.cs │ ├── MarshalledObjectEmitter.cs │ ├── MarshalledObjectEmitterStack.cs │ ├── Marshaller.cs │ ├── ParameterMarshalledObjectEmitter.cs │ ├── SafeHandleMarshaller.cs │ ├── StringBuilderMarshaller.cs │ ├── StringMarshaller.cs │ ├── StructMarshaller.cs │ └── VariableMarshalledObjectEmitter.cs ├── MemberEqualityComparer.cs ├── ObjectFields.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── RuntimeInline │ ├── Runtime.cs │ └── RuntimePINVOKE.cs ├── RuntimeTypeInfoFields.cs ├── Scope.cs ├── SharpLang.Compiler.csproj ├── StackExtensions.cs ├── StackValue.cs ├── StackValueType.cs ├── Toolchains │ └── MSVCToolchain.cs ├── Type.cs ├── TypeState.cs ├── Utils │ └── Utils.cs └── premake4.lua ├── SharpLang.Runtime.Reflection ├── SharpLang.Marshalling │ ├── MarshalFunctionAttribute.cs │ └── MarshalHelper.cs ├── SharpLang.Runtime.Reflection.projitems ├── SharpLang.Runtime.Reflection.shproj ├── System.Collections.Immutable │ ├── Strings.Designer.cs │ ├── Strings.resx │ ├── System │ │ ├── Collections │ │ │ └── Immutable │ │ │ │ ├── IImmutableArray.cs │ │ │ │ ├── IImmutableList.cs │ │ │ │ ├── ImmutableArray.cs │ │ │ │ ├── ImmutableArray`1+Builder.cs │ │ │ │ ├── ImmutableArray`1+Enumerator.cs │ │ │ │ ├── ImmutableArray`1.cs │ │ │ │ ├── ImmutableExtensions.cs │ │ │ │ └── RefAsValueType.cs │ │ ├── Diagnostics │ │ │ ├── CodeAnalysis │ │ │ │ └── ExcludeFromCodeCoverageAttribute.cs │ │ │ └── DebugCorlib.cs │ │ ├── Linq │ │ │ └── Internal │ │ │ │ └── Enumerable.cs │ │ └── Runtime │ │ │ └── InteropServices │ │ │ └── ImmutableArrayInterop.cs │ └── Validation │ │ ├── Requires.cs │ │ └── ValidatedNotNullAttribute.cs ├── System.Diagnostics.Eventing │ ├── EventActivityOptions.cs │ ├── EventAttribute.cs │ ├── EventCommand.cs │ ├── EventCommandEventArgs.cs │ ├── EventSource.cs │ ├── EventSourceAttribute.cs │ ├── NonEventAttribute.cs │ └── Winmeta.cs ├── System.Reflection.Metadata │ ├── Resources │ │ ├── MetadataResources.Designer.cs │ │ └── MetadataResources.resx │ └── System │ │ ├── Reflection │ │ ├── Internal │ │ │ ├── MemoryBlocks │ │ │ │ ├── AbstractMemoryBlock.cs │ │ │ │ ├── ByteArrayMemoryBlock.cs │ │ │ │ ├── ByteArrayMemoryProvider.cs │ │ │ │ ├── ExternalMemoryBlock.cs │ │ │ │ ├── ExternalMemoryBlockProvider.cs │ │ │ │ ├── MemoryBlockProvider.cs │ │ │ │ ├── MemoryMappedFileBlock.cs │ │ │ │ ├── NativeHeapMemoryBlock.cs │ │ │ │ ├── StreamConstraints.cs │ │ │ │ └── StreamMemoryBlockProvider.cs │ │ │ └── Utilities │ │ │ │ ├── BitArithmetic.cs │ │ │ │ ├── EmptyArray.cs │ │ │ │ ├── EncodingHelper.cs │ │ │ │ ├── FileStreamReadLightUp.cs │ │ │ │ ├── ImmutableMemoryStream.cs │ │ │ │ ├── MemoryBlock.cs │ │ │ │ ├── MemoryMapLightUp.cs │ │ │ │ ├── ObjectPool`1.cs │ │ │ │ ├── ReadOnlyUnmanagedMemoryStream.cs │ │ │ │ └── StreamExtensions.cs │ │ ├── Metadata │ │ │ ├── AssemblyDefinition.cs │ │ │ ├── AssemblyFile.cs │ │ │ ├── AssemblyReference.cs │ │ │ ├── BlobReader.cs │ │ │ ├── Constant.cs │ │ │ ├── ConstantTypeCode.cs │ │ │ ├── CustomAttribute.cs │ │ │ ├── CustomAttributeNamedArgumentKind.cs │ │ │ ├── DeclarativeSecurityAttribute.cs │ │ │ ├── Ecma335 │ │ │ │ ├── EditAndContinueLogEntry.cs │ │ │ │ ├── EditAndContinueOperation.cs │ │ │ │ ├── ExportedTypeExtensions.cs │ │ │ │ ├── HeapIndex.cs │ │ │ │ ├── MetadataReaderExtensions.cs │ │ │ │ ├── MetadataTokens.cs │ │ │ │ └── TableIndex.cs │ │ │ ├── EventDefinition.cs │ │ │ ├── ExceptionRegion.cs │ │ │ ├── ExceptionRegionKind.cs │ │ │ ├── ExportedType.cs │ │ │ ├── FieldDefinition.cs │ │ │ ├── GenericParameter.cs │ │ │ ├── GenericParameterConstraint.cs │ │ │ ├── HandleCollections.cs │ │ │ ├── HandleComparer.cs │ │ │ ├── HandleKind.cs │ │ │ ├── Handles.cs │ │ │ ├── InterfaceImplementation.cs │ │ │ ├── Internal │ │ │ │ ├── COR20Constants.cs │ │ │ │ ├── CorElementType.cs │ │ │ │ ├── CustomAttributeTypeTag.cs │ │ │ │ ├── HasConstantTag.cs │ │ │ │ ├── HasCustomAttributeTag.cs │ │ │ │ ├── HasDeclSecurityTag.cs │ │ │ │ ├── HasFieldMarshalTag.cs │ │ │ │ ├── HasSemanticsTag.cs │ │ │ │ ├── Heaps.cs │ │ │ │ ├── ImplementationTag.cs │ │ │ │ ├── MemberForwardedTag.cs │ │ │ │ ├── MemberRefParentTag.cs │ │ │ │ ├── MetadataFlags.cs │ │ │ │ ├── MetadataHeader.cs │ │ │ │ ├── MetadataStreamConstants.cs │ │ │ │ ├── MetadataTableHeader.cs │ │ │ │ ├── MethodDefOrRefTag.cs │ │ │ │ ├── NamespaceCache.cs │ │ │ │ ├── NamespaceData.cs │ │ │ │ ├── ResolutionScopeTag.cs │ │ │ │ ├── StreamHeader.cs │ │ │ │ ├── Tables.cs │ │ │ │ ├── Treatments.cs │ │ │ │ ├── TypeDefOrRefTag.cs │ │ │ │ └── TypeOrMethodDefTag.cs │ │ │ ├── ManifestResource.cs │ │ │ ├── MemberReference.cs │ │ │ ├── MemberReferenceKind.cs │ │ │ ├── MetadataAggregator.cs │ │ │ ├── MetadataKind.cs │ │ │ ├── MetadataReader.WinMD.cs │ │ │ ├── MetadataReader.cs │ │ │ ├── MetadataReaderOptions.cs │ │ │ ├── MetadataStringComparer.cs │ │ │ ├── MetadataStringDecoder.cs │ │ │ ├── MethodBodyBlock.cs │ │ │ ├── MethodDefinition.cs │ │ │ ├── MethodImplementation.cs │ │ │ ├── MethodImport.cs │ │ │ ├── MethodSpecification.cs │ │ │ ├── ModuleDefinition.cs │ │ │ ├── ModuleReference.cs │ │ │ ├── NamespaceDefinition.cs │ │ │ ├── PEReaderExtensions.cs │ │ │ ├── Parameter.cs │ │ │ ├── PropertyDefinition.cs │ │ │ ├── SerializationTypeCode.cs │ │ │ ├── SignatureAttributes.cs │ │ │ ├── SignatureCallingConvention.cs │ │ │ ├── SignatureHeader.cs │ │ │ ├── SignatureKind.cs │ │ │ ├── SignatureTypeCode.cs │ │ │ ├── StandaloneSignature.cs │ │ │ ├── System.Reflection.Metadata.cs │ │ │ ├── TypeDefinition.cs │ │ │ ├── TypeLayout.cs │ │ │ ├── TypeReference.cs │ │ │ └── TypeSpecification.cs │ │ └── PortableExecutable │ │ │ ├── CoffHeader.cs │ │ │ ├── CorFlags.cs │ │ │ ├── CorHeader.cs │ │ │ ├── DirectoryEntry.cs │ │ │ ├── Machine.cs │ │ │ ├── PEBinaryReader.cs │ │ │ ├── PEFileConstants.cs │ │ │ ├── PEFileFlags.cs │ │ │ ├── PEHeader.cs │ │ │ ├── PEHeaders.cs │ │ │ ├── PEMemoryBlock.cs │ │ │ ├── PEReader.cs │ │ │ ├── PEStreamOptions.cs │ │ │ └── SectionHeader.cs │ │ └── Runtime │ │ └── CompilerServices │ │ └── StrongBox_T.cs └── System │ ├── ArrayT.cs │ ├── ISharpLangGenericContext.cs │ ├── SharpLangAssembly.cs │ ├── SharpLangEEType.cs │ ├── SharpLangEETypeComparer.cs │ ├── SharpLangEETypeDefinition.cs │ ├── SharpLangEETypePtr.cs │ ├── SharpLangFieldDescription.cs │ ├── SharpLangHelper.cs │ ├── SharpLangMethodInfo.cs │ ├── SharpLangModule.cs │ ├── SharpLangType.cs │ ├── SharpLangTypeArray.cs │ ├── SharpLangTypeByRef.cs │ ├── SharpLangTypeDefinition.cs │ ├── SharpLangTypeElement.cs │ ├── SharpLangTypeGeneric.cs │ ├── SharpLangTypeGenericParameter.cs │ ├── SharpLangTypePointer.cs │ └── String.cs ├── SharpLang.Runtime ├── CMakeLists.txt ├── ConvertUTF.c ├── ConvertUTF.h ├── Exception.cpp ├── Internal.cpp ├── Marshal.cpp ├── RuntimeType.cpp ├── RuntimeType.h ├── coreclr │ ├── CMakeLists.txt │ ├── classlibnative │ │ ├── CMakeLists.txt │ │ ├── Dirs.proj │ │ ├── bcltype │ │ │ ├── BCLType.nativeproj │ │ │ ├── CMakeLists.txt │ │ │ ├── console.cpp │ │ │ ├── console.h │ │ │ ├── currency.cpp │ │ │ ├── currency.h │ │ │ ├── decimal.cpp │ │ │ ├── decimal.h │ │ │ ├── number.cpp │ │ │ ├── number.h │ │ │ ├── oavariant.cpp │ │ │ ├── oavariant.h │ │ │ ├── stringbuffer.h │ │ │ ├── stringnative.h │ │ │ ├── system.h │ │ │ ├── varargsnative.h │ │ │ ├── variant.cpp │ │ │ ├── variant.h │ │ │ ├── windowsruntimebufferhelper.cpp │ │ │ └── windowsruntimebufferhelper.h │ │ ├── cryptography │ │ │ ├── CMakeLists.txt │ │ │ ├── cryptography.cpp │ │ │ ├── cryptography.h │ │ │ ├── cryptography.nativeproj │ │ │ ├── x509certificate.cpp │ │ │ └── x509certificate.h │ │ ├── float │ │ │ ├── CMakeLists.txt │ │ │ ├── Float.nativeproj │ │ │ ├── floatnative.cpp │ │ │ └── floatnative.h │ │ └── inc │ │ │ ├── .gitmirror │ │ │ ├── calendardata.h │ │ │ ├── floatclass.h │ │ │ ├── nls.h │ │ │ ├── nlsinfo.h │ │ │ └── nlstable.h │ ├── gc │ │ ├── gc.h │ │ └── sample │ │ │ └── etmdummy.h │ ├── inc │ │ ├── check.h │ │ ├── check.inl │ │ ├── clr_std │ │ │ ├── algorithm │ │ │ ├── type_traits │ │ │ ├── utility │ │ │ └── vector │ │ ├── clrconfig.h │ │ ├── clrconfigvalues.h │ │ ├── clrtypes.h │ │ ├── contract.h │ │ ├── cor.h │ │ ├── corerror.h │ │ ├── corerror.xml │ │ ├── corhdr.h │ │ ├── corhlpr.h │ │ ├── corhlprpriv.h │ │ ├── cortypeinfo.h │ │ ├── crsttypes.h │ │ ├── crtwrap.h │ │ ├── daccess.h │ │ ├── debugmacros.h │ │ ├── debugmacrosext.h │ │ ├── debugreturn.h │ │ ├── entrypoints.h │ │ ├── ex.h │ │ ├── fstring.h │ │ ├── genericstackprobe.h │ │ ├── holder.h │ │ ├── iterator.h │ │ ├── log.h │ │ ├── loglf.h │ │ ├── memoryrange.h │ │ ├── new.hpp │ │ ├── newapis.h │ │ ├── palclr.h │ │ ├── palclr_win.h │ │ ├── perfcounterdefs.h │ │ ├── perfcounterdefs.inl │ │ ├── perfcounters.h │ │ ├── predeftlsslot.h │ │ ├── registrywrapper.h │ │ ├── safemath.h │ │ ├── safewrap.h │ │ ├── sbuffer.h │ │ ├── sbuffer.inl │ │ ├── sstring.h │ │ ├── sstring.inl │ │ ├── static_assert.h │ │ ├── staticcontract.h │ │ ├── stresslog.h │ │ ├── switches.h │ │ ├── unsafe.h │ │ ├── utilcode.h │ │ ├── volatile.h │ │ └── winwrap.h │ ├── pal │ │ ├── .gitmirrorall │ │ ├── CMakeLists.txt │ │ ├── automation │ │ │ ├── automation.py │ │ │ ├── compile.py │ │ │ ├── tests.py │ │ │ └── util.py │ │ ├── inc │ │ │ ├── mbusafecrt.h │ │ │ ├── pal.h │ │ │ ├── pal_assert.h │ │ │ ├── pal_char16.h │ │ │ ├── pal_endian.h │ │ │ ├── pal_error.h │ │ │ ├── pal_mstypes.h │ │ │ ├── pal_safecrt.h │ │ │ ├── pal_unwind.h │ │ │ ├── rt │ │ │ │ ├── accctrl.h │ │ │ │ ├── aclapi.h │ │ │ │ ├── assert.h │ │ │ │ ├── atl.h │ │ │ │ ├── atlcom.h │ │ │ │ ├── atlwin.h │ │ │ │ ├── ccombstr.h │ │ │ │ ├── commctrl.h │ │ │ │ ├── commdlg.h │ │ │ │ ├── common.ver │ │ │ │ ├── conio.h │ │ │ │ ├── crtdbg.h │ │ │ │ ├── cstdlib │ │ │ │ ├── cstring.h │ │ │ │ ├── ctype.h │ │ │ │ ├── dbghelp.h │ │ │ │ ├── eh.h │ │ │ │ ├── emmintrin.h │ │ │ │ ├── errorrep.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── float.h │ │ │ │ ├── guiddef.h │ │ │ │ ├── hstring.h │ │ │ │ ├── htmlhelp.h │ │ │ │ ├── imagehlp.h │ │ │ │ ├── intrin.h │ │ │ │ ├── intsafe.h │ │ │ │ ├── io.h │ │ │ │ ├── limits.h │ │ │ │ ├── malloc.h │ │ │ │ ├── math.h │ │ │ │ ├── mbstring.h │ │ │ │ ├── memory.h │ │ │ │ ├── new.h │ │ │ │ ├── no_sal2.h │ │ │ │ ├── ntimage.h │ │ │ │ ├── oaidl.h │ │ │ │ ├── objbase.h │ │ │ │ ├── objidl.h │ │ │ │ ├── ocidl.h │ │ │ │ ├── ole2.h │ │ │ │ ├── oleauto.h │ │ │ │ ├── olectl.h │ │ │ │ ├── oleidl.h │ │ │ │ ├── palrt.h │ │ │ │ ├── poppack.h │ │ │ │ ├── process.h │ │ │ │ ├── psapi.h │ │ │ │ ├── pshpack1.h │ │ │ │ ├── pshpack2.h │ │ │ │ ├── pshpack4.h │ │ │ │ ├── pshpack8.h │ │ │ │ ├── pshpck16.h │ │ │ │ ├── richedit.h │ │ │ │ ├── rpc.h │ │ │ │ ├── rpcndr.h │ │ │ │ ├── safecrt.h │ │ │ │ ├── sal.h │ │ │ │ ├── servprov.h │ │ │ │ ├── share.h │ │ │ │ ├── shellapi.h │ │ │ │ ├── shlobj.h │ │ │ │ ├── shlwapi.h │ │ │ │ ├── specstrings.h │ │ │ │ ├── specstrings_adt.h │ │ │ │ ├── specstrings_strict.h │ │ │ │ ├── specstrings_undef.h │ │ │ │ ├── sscli_version.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stddef.h │ │ │ │ ├── stdint.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── string.h │ │ │ │ ├── symcrypt.h │ │ │ │ ├── tchar.h │ │ │ │ ├── time.h │ │ │ │ ├── tlhelp32.h │ │ │ │ ├── unknwn.h │ │ │ │ ├── urlmon.h │ │ │ │ ├── verrsrc.h │ │ │ │ ├── vsassert.h │ │ │ │ ├── wchar.h │ │ │ │ ├── winapifamily.h │ │ │ │ ├── winbase.h │ │ │ │ ├── wincrypt.h │ │ │ │ ├── windef.h │ │ │ │ ├── windows.h │ │ │ │ ├── winerror.h │ │ │ │ ├── wininet.h │ │ │ │ ├── winnls.h │ │ │ │ ├── winnt.h │ │ │ │ ├── winresrc.h │ │ │ │ ├── winuser.h │ │ │ │ ├── winver.h │ │ │ │ ├── wtsapi32.h │ │ │ │ └── xmmintrin.h │ │ │ └── strsafe.h │ │ ├── prebuilt │ │ │ ├── corerror │ │ │ │ ├── makecorerror.bat │ │ │ │ ├── mscorurt.rc │ │ │ │ └── readme.txt │ │ │ └── inc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── asm_version.h │ │ │ │ ├── buildnumber.h │ │ │ │ ├── clrdata.h │ │ │ │ ├── clretwall.h │ │ │ │ ├── clretwallmain.h │ │ │ │ ├── clrinternal.h │ │ │ │ ├── clrprivbinding.h │ │ │ │ ├── clrprivhosting.h │ │ │ │ ├── clrprivruntimebinders.h │ │ │ │ ├── cordebug.h │ │ │ │ ├── corerror.h │ │ │ │ ├── corprof.h │ │ │ │ ├── corpub.h │ │ │ │ ├── corsym.h │ │ │ │ ├── etmdummy.h │ │ │ │ ├── fusion.h │ │ │ │ ├── fusionpriv.h │ │ │ │ ├── fxver.h │ │ │ │ ├── fxver.rc │ │ │ │ ├── fxverstrings.h │ │ │ │ ├── gchost.h │ │ │ │ ├── ivalidator.h │ │ │ │ ├── ivehandler.h │ │ │ │ ├── metahost.h │ │ │ │ ├── mscoree.h │ │ │ │ ├── mscorsvc.h │ │ │ │ ├── ndpversion.h │ │ │ │ ├── ndpversion_generated.h │ │ │ │ ├── product_version.h │ │ │ │ ├── readme.txt │ │ │ │ ├── sospriv.h │ │ │ │ ├── version.h │ │ │ │ ├── xclrdata.h │ │ │ │ └── xcordebug.h │ │ ├── src │ │ │ ├── .tpattributes │ │ │ ├── CMakeLists.txt │ │ │ ├── arch │ │ │ │ └── i386 │ │ │ │ │ ├── context.S │ │ │ │ │ ├── context.cpp │ │ │ │ │ ├── context2.s │ │ │ │ │ ├── dispatchexceptionwrapper.S │ │ │ │ │ ├── optimizedtls.cpp │ │ │ │ │ ├── processor.cpp │ │ │ │ │ ├── runfilter.s │ │ │ │ │ └── tryexcept.s │ │ │ ├── build_tools │ │ │ │ ├── mdtool_dummy │ │ │ │ └── mdtool_gcc.in │ │ │ ├── config.h.in │ │ │ ├── configure.cmake │ │ │ ├── cruntime │ │ │ │ ├── file.cpp │ │ │ │ ├── filecrt.cpp │ │ │ │ ├── finite.cpp │ │ │ │ ├── lstr.cpp │ │ │ │ ├── malloc.cpp │ │ │ │ ├── mbstring.cpp │ │ │ │ ├── misc.cpp │ │ │ │ ├── misctls.cpp │ │ │ │ ├── path.cpp │ │ │ │ ├── printf.cpp │ │ │ │ ├── printfcpp.cpp │ │ │ │ ├── silent_printf.cpp │ │ │ │ ├── string.cpp │ │ │ │ ├── stringtls.cpp │ │ │ │ ├── thread.cpp │ │ │ │ ├── wchar.cpp │ │ │ │ └── wchartls.cpp │ │ │ ├── debug │ │ │ │ └── debug.cpp │ │ │ ├── examples │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── example1.c │ │ │ ├── exception │ │ │ │ ├── console.cpp │ │ │ │ ├── machexception.cpp │ │ │ │ ├── machexception.h │ │ │ │ ├── machmessage.cpp │ │ │ │ ├── machmessage.h │ │ │ │ ├── seh-unwind.cpp │ │ │ │ ├── seh.cpp │ │ │ │ ├── signal.cpp │ │ │ │ └── signal.hpp │ │ │ ├── file │ │ │ │ ├── directory.cpp │ │ │ │ ├── disk.cpp │ │ │ │ ├── file.cpp │ │ │ │ ├── filetime.cpp │ │ │ │ ├── find.cpp │ │ │ │ ├── path.cpp │ │ │ │ ├── shmfilelockmgr.cpp │ │ │ │ └── shmfilelockmgr.hpp │ │ │ ├── handlemgr │ │ │ │ ├── handleapi.cpp │ │ │ │ └── handlemgr.cpp │ │ │ ├── include │ │ │ │ └── pal │ │ │ │ │ ├── cert.hpp │ │ │ │ │ ├── context.h │ │ │ │ │ ├── corunix.hpp │ │ │ │ │ ├── corunix.inl │ │ │ │ │ ├── critsect.h │ │ │ │ │ ├── cruntime.h │ │ │ │ │ ├── cs.hpp │ │ │ │ │ ├── dbgmsg.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── dtraceprotocol.h │ │ │ │ │ ├── event.hpp │ │ │ │ │ ├── fakepoll.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── file.hpp │ │ │ │ │ ├── filetime.h │ │ │ │ │ ├── handleapi.hpp │ │ │ │ │ ├── handlemgr.hpp │ │ │ │ │ ├── identity.hpp │ │ │ │ │ ├── init.h │ │ │ │ │ ├── list.h │ │ │ │ │ ├── locale.h │ │ │ │ │ ├── malloc.hpp │ │ │ │ │ ├── map.h │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── misc.h │ │ │ │ │ ├── module.h │ │ │ │ │ ├── modulename.h │ │ │ │ │ ├── mutex.hpp │ │ │ │ │ ├── palinternal.h │ │ │ │ │ ├── perftrace.h │ │ │ │ │ ├── printfcpp.hpp │ │ │ │ │ ├── process.h │ │ │ │ │ ├── procobj.hpp │ │ │ │ │ ├── seh.hpp │ │ │ │ │ ├── semaphore.hpp │ │ │ │ │ ├── shm.hpp │ │ │ │ │ ├── shmemory.h │ │ │ │ │ ├── synchcache.hpp │ │ │ │ │ ├── synchobjects.hpp │ │ │ │ │ ├── thread.hpp │ │ │ │ │ ├── threadinfo.hpp │ │ │ │ │ ├── threadsusp.hpp │ │ │ │ │ ├── tls.hpp │ │ │ │ │ ├── unicode_data.h │ │ │ │ │ ├── utf8.h │ │ │ │ │ ├── utils.h │ │ │ │ │ └── virtual.h │ │ │ ├── init │ │ │ │ ├── pal.cpp │ │ │ │ └── sxs.cpp │ │ │ ├── loader │ │ │ │ ├── module.cpp │ │ │ │ └── modulename.cpp │ │ │ ├── locale │ │ │ │ ├── UnicodeData.txt │ │ │ │ ├── unicode.cpp │ │ │ │ ├── unicode_data.cpp │ │ │ │ └── utf8.cpp │ │ │ ├── map │ │ │ │ ├── common.cpp │ │ │ │ ├── common.h │ │ │ │ ├── map.cpp │ │ │ │ └── virtual.cpp │ │ │ ├── memory │ │ │ │ ├── heap.cpp │ │ │ │ └── local.cpp │ │ │ ├── misc │ │ │ │ ├── dbgmsg.cpp │ │ │ │ ├── environ.cpp │ │ │ │ ├── error.cpp │ │ │ │ ├── eventlog.cpp │ │ │ │ ├── fmtmessage.cpp │ │ │ │ ├── identity.cpp │ │ │ │ ├── interlock.cpp │ │ │ │ ├── miscpalapi.cpp │ │ │ │ ├── msgbox.cpp │ │ │ │ ├── perftrace.cpp │ │ │ │ ├── strutil.cpp │ │ │ │ ├── sysinfo.cpp │ │ │ │ ├── time.cpp │ │ │ │ ├── utils.cpp │ │ │ │ └── version.cpp │ │ │ ├── objmgr │ │ │ │ ├── palobjbase.cpp │ │ │ │ ├── palobjbase.hpp │ │ │ │ ├── shmobject.cpp │ │ │ │ ├── shmobject.hpp │ │ │ │ ├── shmobjectmanager.cpp │ │ │ │ └── shmobjectmanager.hpp │ │ │ ├── poll │ │ │ │ └── fakepoll.cpp │ │ │ ├── safecrt │ │ │ │ ├── crtdefs.h │ │ │ │ ├── cruntime.h │ │ │ │ ├── input.inl │ │ │ │ ├── internal.h │ │ │ │ ├── internal_securecrt.h │ │ │ │ ├── makepath_s.c │ │ │ │ ├── mbusafecrt.c │ │ │ │ ├── mbusafecrt_internal.h │ │ │ │ ├── memcpy_s.c │ │ │ │ ├── memmove_s.c │ │ │ │ ├── output.inl │ │ │ │ ├── safecrt_input_s.c │ │ │ │ ├── safecrt_output_l.c │ │ │ │ ├── safecrt_output_s.c │ │ │ │ ├── safecrt_winput_s.c │ │ │ │ ├── safecrt_woutput_s.c │ │ │ │ ├── snprintf.c │ │ │ │ ├── splitpath_s.c │ │ │ │ ├── sprintf.c │ │ │ │ ├── sscanf.c │ │ │ │ ├── strcat_s.c │ │ │ │ ├── strcpy_s.c │ │ │ │ ├── strlen_s.c │ │ │ │ ├── strncat_s.c │ │ │ │ ├── strncpy_s.c │ │ │ │ ├── strtok_s.c │ │ │ │ ├── swprintf.c │ │ │ │ ├── tcscat_s.inl │ │ │ │ ├── tcscpy_s.inl │ │ │ │ ├── tcsncat_s.inl │ │ │ │ ├── tcsncpy_s.inl │ │ │ │ ├── tcstok_s.inl │ │ │ │ ├── tmakepath_s.inl │ │ │ │ ├── tsplitpath_s.inl │ │ │ │ ├── vsprintf.c │ │ │ │ ├── vswprint.c │ │ │ │ ├── wcscat_s.c │ │ │ │ ├── wcscpy_s.c │ │ │ │ ├── wcslen_s.c │ │ │ │ ├── wcsncat_s.c │ │ │ │ ├── wcsncpy_s.c │ │ │ │ ├── wcstok_s.c │ │ │ │ ├── wmakepath_s.c │ │ │ │ ├── wsplitpath_s.c │ │ │ │ ├── xtoa_s.c │ │ │ │ ├── xtow_s.c │ │ │ │ └── xtox_s.inl │ │ │ ├── shmemory │ │ │ │ └── shmemory.cpp │ │ │ ├── sync │ │ │ │ └── cs.cpp │ │ │ ├── synchmgr │ │ │ │ ├── synchcontrollers.cpp │ │ │ │ ├── synchmanager.cpp │ │ │ │ ├── synchmanager.hpp │ │ │ │ └── wait.cpp │ │ │ ├── synchobj │ │ │ │ ├── event.cpp │ │ │ │ ├── mutex.cpp │ │ │ │ └── semaphore.cpp │ │ │ └── thread │ │ │ │ ├── process.cpp │ │ │ │ ├── procprivate.hpp │ │ │ │ ├── thread.cpp │ │ │ │ ├── threadsusp.cpp │ │ │ │ └── tls.cpp │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ └── palsuite │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DisabledTests.txt │ │ │ │ ├── README.txt │ │ │ │ ├── c_runtime │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── __iscsym │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── __iscsym.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _alloca │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _ecvt │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _fdopen │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _finite │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _fullpath │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _gcvt │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── _gcvt.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _getw │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.dat │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _isnan │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _itow │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _makepath │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _mbsdec │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _mbsinc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _mbslen │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _mbsninc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _open_osfhandle │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _putenv │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _putw │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _rotl │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _rotr │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _snprintf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── _snprintf.h │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test10 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test10.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test11.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test12.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test13.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test14 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test14.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test15 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test15.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test16 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test16.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test17 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test17.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test18 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test18.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test19 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test19.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test8.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test9.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _snwprintf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── _snwprintf.h │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test10 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test10.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test11.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test12.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test13.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test14 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test14.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test15 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test15.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test16 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test16.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test17 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test17.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test18 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test18.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test19 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test19.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test8.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test9.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _splitpath │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _stricmp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _strlwr │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _strnicmp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _swab │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _vsnprintf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── _vsnprintf.h │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test10 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test10.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test11.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test12.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test13.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test14 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test14.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test15 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test15.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test16 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test16.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test17 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test17.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test18 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test18.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test19 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test19.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test8.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test9.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _vsnwprintf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── _vsnwprintf.h │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test10 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test10.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test11.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test12.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test13.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test14 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test14.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test15 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test15.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test16 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test16.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test17 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test17.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test18 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test18.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test19 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test19.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test8.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test9.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _wcsicmp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _wcslwr │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _wcsnicmp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _wfopen │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _wmakepath │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _wsplitpath │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _wtoi │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── abs │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── abs.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── acos │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── asin │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── atan │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── atan2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── atof │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── atoi │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── atol │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── bsearch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── ceil │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── cos │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── cosh │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── ctime │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── errno │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── exit │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── exp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── fabs │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── fclose │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── feof │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ ├── testfile │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── ferror │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ ├── testfile │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ ├── testfile │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── fflush │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── fgets │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── floor │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── fmod │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── fopen │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── fprintf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fprintf.h │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test10 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test10.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test11.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test12.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test13.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test14 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test14.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test15 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test15.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test16 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test16.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test17 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test17.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test18 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test18.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test19 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test19.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test8.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test9.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── fputs │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── fread │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ ├── testfile │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ ├── testfile │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ ├── testfile │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── free │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── fseek │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── ftell │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ftell.c │ │ │ │ │ │ ├── testfile.txt │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── fwprintf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fwprintf.h │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test10 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test10.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test11.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test12.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test13.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test14 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test14.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test15 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test15.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test16 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test16.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test17 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test17.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test18 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test18.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test19 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test19.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test8.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test9.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── fwrite │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── getc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── getc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── getenv │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── isalnum │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── isalpha │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── isdigit │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── islower │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── isprint │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── isprint.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── isspace │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── isupper │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── iswdigit │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── iswprint │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── iswspace │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── iswupper │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── iswxdigit │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── isxdigit │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── labs │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── llabs │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── localtime │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── log │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── log10 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── malloc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── memchr │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── memcmp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── memcpy │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── memmove │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── memset │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── modf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── pow │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── printf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── printf.h │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test10 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test10.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test11.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test12.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test13.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test14 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test14.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test15 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test15.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test16 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test16.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test17 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test17.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test18 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test18.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test19 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test19.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test8.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test9.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── qsort │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── rand_srand │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── realloc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── sin │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── sinh │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── sprintf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── sprintf.h │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test10 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test10.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test11.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test12.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test13.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test14 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test14.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test15 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test15.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test16 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test16.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test17 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test17.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test18 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test18.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test19 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test19.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test8.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test9.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── sqrt │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── sscanf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── sscanf.h │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test10 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test10.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test11.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test12.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test13.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test14 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test14.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test15 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test15.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test16 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test16.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test17 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test17.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test8.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test9.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── strcat │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── strchr │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── strcmp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── strcpy │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── strcspn │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── strlen │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── strncat │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── strncmp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── strncpy │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── strpbrk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── strrchr │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── strspn │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── strstr │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── strtod │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── strtok │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── strtoul │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── swprintf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── swprintf.h │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test10 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test10.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test11.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test12.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test13.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test14 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test14.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test15 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test15.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test16 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test16.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test17 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test17.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test18 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test18.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test19 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test19.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test8.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test9.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── swscanf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── swscanf.h │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test10 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test10.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test11.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test12.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test13.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test14 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test14.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test15 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test15.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test16 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test16.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test17 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test17.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test8.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test9.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── tan │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── tanh │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── time │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── tolower │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── toupper │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── towlower │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── towupper │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── ungetc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── testinfo.dat │ │ │ │ │ │ └── ungetc.c │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.txt │ │ │ │ │ │ ├── testinfo.dat │ │ │ │ │ │ └── ungetc.c │ │ │ │ ├── vfprintf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test10 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test10.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test11.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test12.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test13.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test14 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test14.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test15 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test15.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test16 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test16.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test17 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test17.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test18 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test18.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test19 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test19.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test8.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test9.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── vfprintf.h │ │ │ │ ├── vprintf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test10 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test10.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test11.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test12.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test13.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test14 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test14.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test15 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test15.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test16 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test16.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test17 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test17.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test18 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test18.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test19 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test19.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test8.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test9.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── vprintf.h │ │ │ │ ├── vsprintf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test10 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test10.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test11.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test12.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test13.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test14 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test14.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test15 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test15.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test16 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test16.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test17 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test17.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test18 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test18.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test19 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test19.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test8.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test9.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── vsprintf.h │ │ │ │ ├── vswprintf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test10 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test10.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test11.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test12.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test13.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test14 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test14.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test15 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test15.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test16 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test16.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test17 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test17.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test18 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test18.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test19 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test19.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test8.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test9.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── vswprintf.h │ │ │ │ ├── wcscat │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── wcschr │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── wcscmp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── wcscpy │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── wcslen │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── wcsncat │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── wcsncmp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── wcsncpy │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── wcspbrk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── wcsrchr │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── wcsstr │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── wcstod │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── wcstok │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── wcstol │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── wcstoul │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ └── wprintf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── wprintf.h │ │ │ │ ├── common │ │ │ │ ├── ResultBuffer.cpp │ │ │ │ ├── ResultBuffer.h │ │ │ │ ├── ResultTime.h │ │ │ │ ├── pal_stdclib.h │ │ │ │ └── palsuite.h │ │ │ │ ├── composite │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── object_management │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── event │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── nonshared │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ ├── event.c │ │ │ │ │ │ │ └── main.c │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ ├── event.c │ │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── mutex │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── nonshared │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ └── mutex.c │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ └── mutex.c │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── semaphore │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── nonshared │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── semaphore.c │ │ │ │ │ │ └── shared │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── semaphore.c │ │ │ │ ├── synchronization │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── criticalsection │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── criticalsection.c │ │ │ │ │ │ ├── mainWrapper.c │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── nativecriticalsection │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── mtx_critsect.cpp │ │ │ │ │ │ ├── mtx_critsect.h │ │ │ │ │ │ ├── pal_composite_native_cs.c │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ ├── resultbuffer.cpp │ │ │ │ │ │ └── resultbuffer.h │ │ │ │ │ └── nativecs_interlocked │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── hpitinterlock.s │ │ │ │ │ │ ├── interlocked.cpp │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── mtx_critsect.cpp │ │ │ │ │ │ ├── mtx_critsect.h │ │ │ │ │ │ ├── notes.txt │ │ │ │ │ │ ├── pal_composite_native_cs.c │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ ├── resultbuffer.cpp │ │ │ │ │ │ ├── resultbuffer.h │ │ │ │ │ │ └── sparcinterloc.s │ │ │ │ ├── threading │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── threadsuspension │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── mainWrapper.c │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ ├── samplefile.dat │ │ │ │ │ │ └── threadsuspension.c │ │ │ │ │ └── threadsuspension_switchthread │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── mainWrapper.c │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ ├── samplefile.dat │ │ │ │ │ │ └── threadsuspension.c │ │ │ │ └── wfmo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── main.c │ │ │ │ │ ├── mutex.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── exception_handling │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── PAL_EXCEPT_FILTER │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── PAL_EXCEPT_FILTER.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── pal_except_filter.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── pal_except_filter.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── PAL_EXCEPT_FILTER_EX │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── PAL_EXCEPT_FILTER_EX.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── pal_except_filter_ex.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── pal_except_filter.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── PAL_GetBottommostRegistration │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── PAL_TRY_EXCEPT │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── PAL_TRY_EXCEPT.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── PAL_TRY_EXCEPT.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── PAL_TRY_EXCEPT_EX │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── PAL_TRY_EXCEPT_EX.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── PAL_TRY_EXCEPT_EX.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── PAL_TRY_EXCEPT_EX.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── PAL_TRY_LEAVE_FINALLY │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── PAL_TRY_LEAVE_FINALLY.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── RaiseException │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SetUnhandledExceptionFilter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── pal_except │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ └── pal_finally │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── pal_finally.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── file_io │ │ │ │ ├── AreFileApisANSI │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── AreFileApisANSI.c │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CompareFileTime │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CompareFileTime.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CopyFileA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CopyFileA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CopyFileW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CopyFileW.c │ │ │ │ │ │ ├── ExpectedResults.txt │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CreateDirectoryA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CreateDirectoryA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── createdirectorya.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CreateDirectoryW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CreateDirectoryW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── createdirectoryw.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CreateFileA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CreateFileA.c │ │ │ │ │ │ ├── testinfo.dat │ │ │ │ │ │ └── winoutput │ │ │ │ ├── CreateFileW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CreateFileW.c │ │ │ │ │ │ ├── testinfo.dat │ │ │ │ │ │ └── winoutput │ │ │ │ ├── DeleteFileA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── DeleteFileA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── DeleteFileW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── DeleteFileW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── DosDateTimeToFileTime │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── FileTimeToDosDateTime │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── FileTimeToLocalFileTime │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── FileTimeToLocalFileTime.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── FindClose │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── FindClose.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── FindFirstFileA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── FindFirstFileA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── FindFirstFileW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── FindFirstFileW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── FindNextFileA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── FindNextFileA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── findnextfilea.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── FindNextFileW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── FindNextFileW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── findnextfilew.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── FlushFileBuffers │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── FlushFileBuffers.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetConsoleCP │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetConsoleCP.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetConsoleOutputCP │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetConsoleOutputCP.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetCurrentDirectoryA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetCurrentDirectoryA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetCurrentDirectoryW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetCurrentDirectoryW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetDiskFreeSpaceW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetDiskFreeSpaceW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── getdiskfreespacew.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetFileAttributesA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── .hidden_directory │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── keepme │ │ │ │ │ │ ├── .hidden_file │ │ │ │ │ │ ├── .hidden_ro_directory │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── keepme │ │ │ │ │ │ ├── .hidden_ro_file │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetFileAttributesA.c │ │ │ │ │ │ ├── no_directory │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── keepme │ │ │ │ │ │ ├── no_file │ │ │ │ │ │ ├── normal_test_directory │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── keepme │ │ │ │ │ │ ├── normal_test_file │ │ │ │ │ │ ├── ro_test_directory │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── keepme │ │ │ │ │ │ ├── ro_test_file │ │ │ │ │ │ ├── rw_directory │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── keepme │ │ │ │ │ │ ├── rw_file │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetFileAttributesExW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── .hidden_directory │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ └── anchor.txt │ │ │ │ │ │ ├── .hidden_file │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── normal_test_directory │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ └── keepme │ │ │ │ │ │ ├── normal_test_file │ │ │ │ │ │ ├── ro_test_directory │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ └── keepme │ │ │ │ │ │ ├── ro_test_file │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetFileAttributesW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── .hidden_directory │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── keepme │ │ │ │ │ │ ├── .hidden_file │ │ │ │ │ │ ├── .hidden_ro_directory │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── keepme │ │ │ │ │ │ ├── .hidden_ro_file │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetFileAttributesW.c │ │ │ │ │ │ ├── no_directory │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── keepme │ │ │ │ │ │ ├── no_file │ │ │ │ │ │ ├── normal_test_directory │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── keepme │ │ │ │ │ │ ├── normal_test_file │ │ │ │ │ │ ├── ro_test_directory │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── keepme │ │ │ │ │ │ ├── ro_test_file │ │ │ │ │ │ ├── rw_file │ │ │ │ │ │ ├── rw_test_directory │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── keepme │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetFileSize │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetFileSize.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetFileSizeEx │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetFileSizeEx.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetFileTime │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetFileTime.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetFileTime.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetFileTime.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetFileTime.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── getfiletime.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── getfiletime.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── getfiletime.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetFileType │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetFileType.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── getfiletype.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── getfiletype.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetFullPathNameA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetFullPathNameA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetFullPathNameW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetFullPathNameW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetLongPathNameW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetLongPathNameW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── getlongpathnamew.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetStdHandle │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetStdHandle.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetStdHandle.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetSystemTime │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetSystemTimeAsFileTime │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetSystemTimeAsFileTime.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetTempFileNameA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetTempFileNameA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetTempFileNameA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── gettempfilenamea.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetTempFileNameW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetTempFileNameW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetTempFileNameW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── gettempfilenamew.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetTempPathW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetTempPathW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── LocalFileTimeToFileTime │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── LocalFileTimeToFileTime.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── localfiletimetofiletime.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── MoveFileA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ExpectedResults.txt │ │ │ │ │ │ ├── MoveFileA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── MoveFileExA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ExpectedResults.txt │ │ │ │ │ │ ├── MoveFileExA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── MoveFileExW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ExpectedResults.txt │ │ │ │ │ │ ├── MoveFileExW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── MoveFileW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ExpectedResults.txt │ │ │ │ │ │ ├── MoveFileW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── ReadFile │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── NonReadableFile.txt │ │ │ │ │ │ ├── ReadFile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ReadFile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ReadFile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── readfile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── RemoveDirectoryA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── RemoveDirectoryA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── RemoveDirectoryW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── RemoveDirectoryW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SearchPathA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SearchPathA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SearchPathW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SearchPathW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SetCurrentDirectoryA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetCurrentDirectoryA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── setcurrentdirectorya.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── setcurrentdirectorya.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SetCurrentDirectoryW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetCurrentDirectoryW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── setcurrentdirectoryw.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── setcurrentdirectoryw.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SetEndOfFile │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetEndOfFile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetEndOfFile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetEndOfFile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── setendoffile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SetFileAttributesA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFileAttributesA.c │ │ │ │ │ │ ├── test_file │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFileAttributesA.c │ │ │ │ │ │ ├── test_file │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFileAttributesA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFileAttributesA.c │ │ │ │ │ │ ├── test_file │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SetFileAttributesW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFileAttributesW.c │ │ │ │ │ │ ├── test_file │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFileAttributesW.c │ │ │ │ │ │ ├── test_file │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFileAttributesW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFileAttributesW.c │ │ │ │ │ │ ├── test_file │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SetFilePointer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFilePointer.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFilePointer.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFilePointer.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFilePointer.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFilePointer.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFilePointer.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFilePointer.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SetFileTime │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFileTime.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFileTime.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFileTime.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SetFileTime.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── WriteFile │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── WriteFile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Results.txt │ │ │ │ │ │ ├── WriteFile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── WriteFile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── testinfo.dat │ │ │ │ │ │ └── writefile.c │ │ │ │ │ └── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── testinfo.dat │ │ │ │ │ │ └── writefile.c │ │ │ │ ├── errorpathnotfound │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ └── gettemppatha │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── gettemppatha.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── filemapping_memmgt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CreateFileMappingA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CreateFileMapping.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CreateFileMapping.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CreateFileMapping.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CreateFileMapping.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CreateFileMapping.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── createfilemapping.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── createfilemapping.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── createfilemapping.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CreateFileMappingW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CreateFileMapping_neg1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CreateFileMapping_neg.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CreateFileMappingW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── CreateFileMappingW.c │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CreateFileMappingW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CreateFileMappingW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CreateFileMappingW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CreateFileMappingW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── createfilemapping.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── createfilemapping.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── createfilemapping.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── FreeLibrary │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── FreeLibrary.c │ │ │ │ │ │ ├── dlltest.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── FreeLibraryAndExitThread │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── dlltest.c │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetModuleFileNameA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetModuleFileNameA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetModuleFileNameA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetModuleFileNameW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetModuleFileNameW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetModuleFileNameW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetProcAddress │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ ├── testinfo.dat │ │ │ │ │ │ └── testlib.c │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ ├── testinfo.dat │ │ │ │ │ │ └── testlib.c │ │ │ │ ├── GetProcessHeap │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetProcessHeap.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── HeapAlloc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── HeapAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── HeapAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── HeapAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── HeapFree │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── HeapFree.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── HeapReAlloc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── LocalAlloc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── LocalAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── LocalFree │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── LocalFree.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── LocalFree.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── LockFile │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LockFile.h │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── helper.c │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── helper.c │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── helper.c │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── helper.c │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test7.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── MapViewOfFile │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── MapViewOfFile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── MapViewOfFile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── MapViewOfFile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── mapviewoffile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── mapviewoffile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── mapviewoffile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── OpenFileMappingA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── OpenFileMappingA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── OpenFileMappingA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── OpenFileMappingA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── OpenFileMappingW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── OpenFileMappingW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── OpenFileMappingW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── OpenFileMappingW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── ReadProcessMemory │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ReadProcessMemory_neg1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ReadProcessMemory_neg.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ReadProcessMemory.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── commonconsts.h │ │ │ │ │ │ ├── helper.c │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── RtlMoveMemory │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── UnlockFile │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── UnlockFile.h │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── helper.c │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── helper.c │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── UnmapViewOfFile │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── UnmapViewOfFile.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── testinfo.dat │ │ │ │ │ │ └── unmapviewoffile.c │ │ │ │ ├── VirtualAlloc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test10 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test14 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test15 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test16 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test17 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test18 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test19 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test20 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── testinfo.dat │ │ │ │ │ │ └── virtualalloc.c │ │ │ │ │ ├── test21 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── testinfo.dat │ │ │ │ │ │ └── virtualalloc.c │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualAlloc.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── VirtualFree │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualFree.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualFree.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualFree.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── VirtualProtect │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualProtect.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualProtect.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualProtect.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualProtect.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualProtect.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── VirtualProtect.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ └── VirtualQuery │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── VirtualQuery.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── loader │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LoadLibraryA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── LoadLibraryA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── LoadLibraryA.c │ │ │ │ │ │ ├── MyModule.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── loadlibrarya.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── loadlibrarya.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── dlltest.c │ │ │ │ │ │ ├── loadlibrarya.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── LoadLibraryA.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── dlltest.c │ │ │ │ │ │ ├── loadlibrarya.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ └── LoadLibraryW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LoadLibraryW.c │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── loadlibraryw.c │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── loadlibraryw.c │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test5 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── loadlibraryw.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── locale_info │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CompareStringA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CompareStringW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetACP │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetCPInfo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetLocaleInfoW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetStringTypeExW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetSystemDefaultLangID │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetThreadLocale │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetTimeZoneInformation │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetUserDefaultLCID │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetUserDefaultLangID │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── IsDBCSLeadByte │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── IsDBCSLeadByteEx │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── IsValidCodePage │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── IsValidLocale │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── MultiByteToWideChar │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SetThreadLocale │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ └── WideCharToMultiByte │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test3.c │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test4 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test4.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── manual-inspect.dat │ │ │ │ ├── manual-unautomatable.dat │ │ │ │ ├── miscellaneous │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CharNextA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CharNextExA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CloseHandle │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CreatePipe │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── FlushInstructionCache │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── FormatMessageW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── FreeEnvironmentStringsW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetCalendarInfoW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetCalendarInfoW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetCalendarInfoW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetCommandLineW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetComputerNameW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetDateFormatW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── GetDateFormatW_neg1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetDateFormatW_neg.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── GetDateFormatW_neg2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetDateFormatW_neg.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── GetDateFormatW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetEnvironmentStringsW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetEnvironmentVariableA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetEnvironmentVariableW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test5.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test6.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetLastError │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetSystemInfo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetTickCount │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetUserNameW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetVersionExA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetVersionExW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── InterLockedExchangeAdd │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test.c │ │ │ │ ├── InterlockedCompareExchange │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test.c │ │ │ │ ├── InterlockedCompareExchange64 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test.c │ │ │ │ ├── InterlockedCompareExchangePointer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── InterlockedDecrement │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test.c │ │ │ │ ├── InterlockedDecrement64 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test.c │ │ │ │ ├── InterlockedExchange │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── InterlockedExchange64 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── InterlockedExchangePointer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── InterlockedExchangePointer.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── InterlockedIncrement │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test.c │ │ │ │ ├── InterlockedIncrement64 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test.c │ │ │ │ ├── IsBadCodePtr │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── IsBadReadPtr │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── IsBadWritePtr │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── MessageBoxW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SetEnvironmentVariableA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SetEnvironmentVariableW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SetLastError │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _i64tow │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── _ui64tow │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── _ui64tow.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── _ui64tow.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── lstrcatW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test2.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test3.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test4 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test4.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── lstrcpyW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── lstrcpynW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── lstrlenA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── lstrlenW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── queryperformancecounter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── queryperformancefrequency │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test1.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── wsprintfA │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ └── wsprintfW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test.c │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test11 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test.c │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test12 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test.c │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test13 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test.c │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test.c │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test.c │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test6 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test.c │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test7 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test.c │ │ │ │ │ └── testinfo.dat │ │ │ │ │ ├── test8 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test.c │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test9 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── pal_specific │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── PAL_GetPALDirectoryW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── PAL_GetPALDirectoryW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── PAL_GetUserTempDirectoryW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── PAL_GetUserTempDirectoryW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── PAL_Initialize_Terminate │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── PAL_Initialize_Terminate.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── pal_initialize_twice.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── PAL_RegisterLibraryW_UnregisterLibraryW │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── PAL_RegisterLibraryW_UnregisterLibraryW.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ │ └── test2_neg │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── reg_unreg_libraryw_neg.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── PAL_errno │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── PAL_errno.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── PAL_get_stderr │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── PAL_get_stderr.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── PAL_get_stdin │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── PAL_get_stdin.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── PAL_get_stdout │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── PAL_get_stdout.c │ │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── pal_entrypoint │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── pal_entrypoint.c │ │ │ │ │ │ ├── palstartup.h │ │ │ │ │ │ └── testinfo.dat │ │ │ │ └── pal_initializedebug │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── pal_initializedebug.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── paltestlist.txt │ │ │ │ ├── paltestlist_to_be_reviewed.txt │ │ │ │ ├── palverify.dat │ │ │ │ ├── runpaltests.sh │ │ │ │ ├── samples │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── smoketest.script │ │ │ │ ├── tests-manual.dat │ │ │ │ └── threading │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CreateEventA │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test3.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CreateEventW │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test3.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CreateMutexA_ReleaseMutex │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CreateMutexA.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CreateMutexA.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CreateMutexW_ReleaseMutex │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CreateMutexW.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CreateMutexW.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CreateProcessA │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── childProcess.c │ │ │ │ │ ├── parentProcess.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── childprocess.c │ │ │ │ │ ├── parentprocess.c │ │ │ │ │ ├── test2.h │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CreateProcessW │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── childProcess.c │ │ │ │ │ ├── parentProcess.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── childprocess.c │ │ │ │ │ ├── parentprocess.c │ │ │ │ │ ├── test2.h │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CreateSemaphoreA_ReleaseSemaphore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CreateSemaphore.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CreateSemaphore.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── createsemaphore.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CreateSemaphoreW_ReleaseSemaphore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CreateSemaphore.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CreateSemaphore.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── createsemaphore.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CreateThread │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test3.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── CriticalSectionFunctions │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── InitializeCriticalSection.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test3.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test4 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test4.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test5 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test5.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test6 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test6.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test7 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test7.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test8 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test8.c │ │ │ │ │ └── thistest.dat │ │ │ │ ├── DisableThreadLibraryCalls │ │ │ │ ├── test1 │ │ │ │ │ ├── test1.c │ │ │ │ │ ├── testinfo.dat │ │ │ │ │ └── testlib.c │ │ │ │ └── test2 │ │ │ │ │ ├── dllmain1.c │ │ │ │ │ ├── dllmain2.c │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── DuplicateHandle │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test10 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test10.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test11 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── childprocess.c │ │ │ │ │ ├── myexitcode.h │ │ │ │ │ ├── test11.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test12 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test12.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test3.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test4 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test4.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test5 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test5.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test6 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test6.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test7 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test7.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test8 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test8.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test9 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test9.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── ExitProcess │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ExitProcess.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test3.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── ExitThread │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── childprocess.c │ │ │ │ │ ├── myexitcode.h │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test3 │ │ │ │ │ ├── dllmain.c │ │ │ │ │ ├── test3.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetCurrentProcess │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── process.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetCurrentProcessId │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── processId.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetCurrentThread │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── testinfo.dat │ │ │ │ │ └── thread.c │ │ │ │ └── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetCurrentThreadId │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── testinfo.dat │ │ │ │ │ └── threadId.c │ │ │ │ ├── GetExitCodeProcess │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── childProcess.c │ │ │ │ │ ├── myexitcode.h │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── GetProcessTimes │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── OpenEventW │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── childprocess.c │ │ │ │ │ ├── test3.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test4 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test4.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test5 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test5.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── OpenProcess │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── childProcess.c │ │ │ │ │ ├── myexitcode.h │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── QueueUserAPC │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test3.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test4 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test4.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test5 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test5.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test6 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test6.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test7 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test7.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── ResetEvent │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test3.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test4 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test4.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── ResumeThread │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SetConsoleCtrlHandler │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test10 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test10.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test4 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test4.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test5 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test5.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test6 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test6.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test7 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test7.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test8 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test8.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SetErrorMode │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SetEvent │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test3.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test4 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test4.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── Sleep │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Sleep.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── sleep.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SleepEx │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SuspendThread │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test3.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test4 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test4.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test5 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test5.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── SwitchToThread │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── TLS │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── TLS.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── TLS.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── TLS.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test4 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test4.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test5 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test5.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test6_optimizedtls │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── TerminateProcess │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── TerminateProcess.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── ThreadPriority │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ThreadPriority.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── WaitForMultipleObjects │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── WaitForMultipleObjectsEx │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test2.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test3.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test4 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test4.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test5 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── commonconsts.h │ │ │ │ │ ├── helper.c │ │ │ │ │ ├── test5.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test6 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── child6.c │ │ │ │ │ ├── test6.c │ │ │ │ │ └── thistest.dat │ │ │ │ ├── WaitForSingleObject │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── WFSOExMutexTest │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── WFSOExMutexTest.c │ │ │ │ ├── WFSOExSemaphoreTest │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── WFSOExSemaphoreTest.c │ │ │ │ ├── WFSOExThreadTest │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── WFSOExThreadTest.c │ │ │ │ ├── WFSOMutexTest │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── WFSOMutexTest.c │ │ │ │ ├── WFSOProcessTest │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ChildProcess.c │ │ │ │ │ └── WFSOProcessTest.c │ │ │ │ ├── WFSOSemaphoreTest │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── WFSOSemaphoreTest.c │ │ │ │ ├── WFSOThreadTest │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── WFSOThreadTest.c │ │ │ │ └── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── YieldProcessor │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test1.c │ │ │ │ │ └── testinfo.dat │ │ │ │ └── setthreadcontext │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test1 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test1.c │ │ │ │ └── testinfo.dat │ │ └── tools │ │ │ ├── CMakeLists.txt │ │ │ ├── clang-compiler-override.txt │ │ │ ├── cppmunge │ │ │ ├── CMakeLists.txt │ │ │ └── cppmunge.c │ │ │ ├── gen-buildsys-clang.sh │ │ │ ├── gen-buildsys-win.bat │ │ │ ├── preptests.sh │ │ │ ├── probe-win.ps1 │ │ │ ├── setup-compiler-clang.sh │ │ │ ├── setup-ubuntuvm.sh │ │ │ ├── smarty.sh │ │ │ └── windows-compiler-override.txt │ ├── palrt │ │ ├── .gitmirror │ │ ├── CMakeLists.txt │ │ ├── bstr.cpp │ │ ├── coguid.cpp │ │ ├── comem.cpp │ │ ├── common.h │ │ ├── convert.h │ │ ├── decarith.cpp │ │ ├── decconv.cpp │ │ ├── guid.cpp │ │ ├── guiddef.h │ │ ├── memorystream.cpp │ │ ├── path.cpp │ │ ├── shlwapip.h │ │ ├── shstr.h │ │ ├── urlpars.cpp │ │ └── variant.cpp │ ├── sharplang │ │ ├── CoreCLR.cpp │ │ ├── PInvoke.cpp │ │ └── sharplang.cpp │ ├── utilcode │ │ └── ex.cpp │ └── vm │ │ ├── binder.cpp │ │ ├── binder.h │ │ ├── classnames.h │ │ ├── common.h │ │ ├── comutilnative.cpp │ │ ├── comutilnative.h │ │ ├── crst.cpp │ │ ├── crst.h │ │ ├── ecalllist.h │ │ ├── eecontract.h │ │ ├── eehash.h │ │ ├── eehash.inl │ │ ├── excep.cpp │ │ ├── excep.h │ │ ├── exceptmacros.h │ │ ├── fcall.h │ │ ├── field.h │ │ ├── frames.h │ │ ├── gc.h │ │ ├── gcenv.h │ │ ├── hosting.cpp │ │ ├── metasig.h │ │ ├── mscorlib.cpp │ │ ├── mscorlib.h │ │ ├── namespace.h │ │ ├── nativeoverlapped.h │ │ ├── object.h │ │ ├── qcall.cpp │ │ ├── qcall.h │ │ ├── rexcep.h │ │ ├── runtimeexceptionkind.h │ │ ├── safehandle.cpp │ │ ├── spinlock.h │ │ ├── stackprobe.h │ │ ├── syncclean.hpp │ │ ├── threads.h │ │ ├── util.cpp │ │ ├── util.hpp │ │ └── vars.hpp └── premake4.lua ├── SharpLang.sln ├── SharpLang.sln.DotSettings ├── linker ├── AUTHORS ├── ChangeLog ├── Descriptors │ ├── Mono.Posix.xml │ ├── System.Core.xml │ ├── System.Drawing.xml │ ├── System.Web.xml │ ├── System.xml │ └── mscorlib.xml ├── MIT.X11 ├── Makefile ├── Mono.Linker.Steps │ ├── BaseStep.cs │ ├── BlacklistStep.cs │ ├── CleanStep.cs │ ├── IStep.cs │ ├── LoadI18nAssemblies.cs │ ├── LoadReferencesStep.cs │ ├── MarkStep.cs │ ├── OutputStep.cs │ ├── RegenerateGuidStep.cs │ ├── ResolveFromAssemblyStep.cs │ ├── ResolveFromXApiStep.cs │ ├── ResolveFromXmlStep.cs │ ├── ResolveStep.cs │ ├── SweepStep.cs │ └── TypeMapStep.cs ├── Mono.Linker.csproj ├── Mono.Linker │ ├── Annotations.cs │ ├── AssemblyAction.cs │ ├── AssemblyInfo.cs │ ├── AssemblyResolver.cs │ ├── Driver.cs │ ├── I18nAssemblies.cs │ ├── IXApiVisitor.cs │ ├── LinkContext.cs │ ├── MethodAction.cs │ ├── Pipeline.cs │ ├── TypePreserve.cs │ └── XApiReader.cs ├── README ├── configure ├── monolinker.exe.sources ├── monolinker.in ├── profiler │ ├── Makefile │ └── link.c └── standalone.make ├── mcs └── tools │ └── linker │ └── Descriptors │ └── mscorlib.xml └── mscorlib ├── .gitmirrorall ├── Common ├── PinnableBufferCache.cs └── Preprocessed │ └── AssemblyRefs.g.cs ├── GenerateCompilerResponseFile.targets ├── GenerateSplitStringResources.targets ├── LICENSE ├── Tools ├── BclRewriter │ └── BclRewriter.targets ├── PostProcessingTools.targets ├── Signing │ ├── PublicTestKey.snk │ ├── TestKeyPair.snk │ └── ecma.pub └── Versioning │ ├── GenerateVersionInfo.targets │ └── NativeVersion.rc ├── clr.coreclr.props ├── clr.defines.targets ├── corefx ├── SR.cs └── System │ └── Globalization │ ├── Calendar.cs │ ├── CalendarData.Unix.cs │ ├── CalendarData.Win32.cs │ ├── CalendarData.cs │ ├── CalendarWeekRule.cs │ ├── CalendricalCalculationsHelper.cs │ ├── CharUnicodeInfo.cs │ ├── CharUnicodeInfoData.cs │ ├── ChineseLunisolarCalendar.cs │ ├── CompareInfo.Unix.cs │ ├── CompareInfo.Win32.cs │ ├── CompareInfo.cs │ ├── CultureData.Unix.cs │ ├── CultureData.Win32.cs │ ├── CultureData.cs │ ├── CultureInfo.Unix.cs │ ├── CultureInfo.Win32.cs │ ├── CultureInfo.cs │ ├── CultureNotFoundException.cs │ ├── DateTimeFormatInfo.cs │ ├── DateTimeFormatInfoScanner.cs │ ├── DayLightTime.cs │ ├── EastAsianLunisolarCalendar.cs │ ├── GregorianCalendar.cs │ ├── GregorianCalendarHelper.cs │ ├── GregorianCalendarTypes.cs │ ├── HebrewCalendar.cs │ ├── HebrewNumber.cs │ ├── HijriCalendar.Unix.cs │ ├── HijriCalendar.Win32.cs │ ├── HijriCalendar.cs │ ├── InternalGlobalizationHelper.cs │ ├── JapaneseCalendar.Unix.cs │ ├── JapaneseCalendar.Win32.cs │ ├── JapaneseCalendar.cs │ ├── JapaneseLunisolarCalendar.cs │ ├── JulianCalendar.cs │ ├── KoreanCalendar.cs │ ├── KoreanLunisolarCalendar.cs │ ├── NumberFormatInfo.cs │ ├── PersianCalendar.cs │ ├── RegionInfo.cs │ ├── StringInfo.cs │ ├── TaiwanCalendar.cs │ ├── TaiwanLunisolarCalendar.cs │ ├── TextElementEnumerator.cs │ ├── TextInfo.Unix.cs │ ├── TextInfo.Win32.cs │ ├── TextInfo.cs │ ├── ThaiBuddhistCalendar.cs │ ├── TimeSpanStyles.cs │ ├── UmAlQuraCalendar.cs │ └── UnicodeCategory.cs ├── dir.props ├── model.xml ├── mscorlib.csproj ├── mscorlib.shared.sources.props └── src ├── GlobalSuppressions.cs ├── Microsoft └── Win32 │ ├── OAVariantLib.cs │ ├── Registry.cs │ ├── RegistryKey.cs │ ├── RegistryOptions.cs │ ├── RegistryValueKind.cs │ ├── RegistryView.cs │ ├── SafeHandles │ ├── SafeFileHandle.cs │ ├── SafeFileMappingHandle.cs │ ├── SafeFindHandle.cs │ ├── SafeLibraryHandle.cs │ ├── SafeLocalAllocHandle.cs │ ├── SafeRegistryHandle.cs │ ├── SafeViewOfFileHandle.cs │ ├── SafeWaitHandle.cs │ └── Win32SafeHandles.cs │ ├── UnsafeNativeMethods.cs │ └── Win32Native.cs ├── System ├── AccessViolationException.cs ├── Action.cs ├── Activator.cs ├── AggregateException.cs ├── AppContext │ ├── AppContext.cs │ ├── AppContextDefaultValues.Defaults.Central.cs │ ├── AppContextDefaultValues.Defaults.cs │ ├── AppContextDefaultValues.cs │ └── AppContextSwitches.cs ├── AppDomain.cs ├── AppDomainAttributes.cs ├── AppDomainManager.cs ├── AppDomainSetup.cs ├── AppDomainUnloadedException.cs ├── ApplicationException.cs ├── ApplicationId.cs ├── ArgIterator.cs ├── ArgumentException.cs ├── ArgumentNullException.cs ├── ArgumentOutOfRangeException.cs ├── ArithmeticException.cs ├── Array.cs ├── ArraySegment.cs ├── ArrayTypeMismatchException.cs ├── AsyncCallback.cs ├── Attribute.cs ├── AttributeTargets.cs ├── AttributeUsageAttribute.cs ├── BCLDebug.cs ├── BadImageFormatException.cs ├── BitConverter.cs ├── Boolean.cs ├── Buffer.cs ├── Byte.cs ├── CLRConfig.cs ├── CLSCompliantAttribute.cs ├── CannotUnloadAppDomainException.cs ├── CfgParser.cs ├── Char.cs ├── CharEnumerator.cs ├── Collections │ ├── ArrayList.cs │ ├── BitArray.cs │ ├── CollectionBase.cs │ ├── Comparer.cs │ ├── CompatibleComparer.cs │ ├── Concurrent │ │ ├── ConcurrentDictionary.cs │ │ ├── ConcurrentQueue.cs │ │ ├── ConcurrentStack.cs │ │ ├── IProducerConsumerCollection.cs │ │ ├── OrderablePartitioner.cs │ │ ├── Partitioner.cs │ │ └── PartitionerStatic.cs │ ├── DictionaryEntry.cs │ ├── EmptyReadOnlyDictionaryInternal.cs │ ├── Generic │ │ ├── ArraySortHelper.cs │ │ ├── Comparer.cs │ │ ├── DebugView.cs │ │ ├── Dictionary.cs │ │ ├── EqualityComparer.cs │ │ ├── ICollection.cs │ │ ├── IComparer.cs │ │ ├── IDictionary.cs │ │ ├── IEnumerable.cs │ │ ├── IEnumerator.cs │ │ ├── IEqualityComparer.cs │ │ ├── IList.cs │ │ ├── IReadOnlyCollection.cs │ │ ├── IReadOnlyDictionary.cs │ │ ├── IReadOnlyList.cs │ │ ├── KeyNotFoundException.cs │ │ ├── KeyValuePair.cs │ │ ├── List.cs │ │ └── MangoArraySortHelper.cs │ ├── Hashtable.cs │ ├── ICollection.cs │ ├── IComparer.cs │ ├── IDictionary.cs │ ├── IDictionaryEnumerator.cs │ ├── IEnumerable.cs │ ├── IEnumerator.cs │ ├── IEqualityComparer.cs │ ├── IHashCodeProvider.cs │ ├── IList.cs │ ├── IStructuralComparable.cs │ ├── IStructuralEquatable.cs │ ├── KeyValuePairs.cs │ ├── ListDictionaryInternal.cs │ ├── ObjectModel │ │ ├── Collection.cs │ │ ├── KeyedCollection.cs │ │ ├── ReadOnlyCollection.cs │ │ └── ReadOnlyDictionary.cs │ ├── SortedList.cs │ ├── Stack.cs │ └── StructuralComparisons.cs ├── CompatibilitySwitches.cs ├── Configuration │ └── Assemblies │ │ ├── AssemblyHash.cs │ │ ├── AssemblyHashAlgorithm.cs │ │ └── AssemblyVersionCompatibility.cs ├── Console.cs ├── ConsoleCancelEventArgs.cs ├── ConsoleColor.cs ├── ConsoleKey.cs ├── ConsoleKeyInfo.cs ├── ConsoleModifiers.cs ├── ConsoleSpecialKey.cs ├── ContextBoundObject.cs ├── ContextMarshalException.cs ├── ContextStaticAttribute.cs ├── Convert.cs ├── Currency.cs ├── DBNull.cs ├── DataMisalignedException.cs ├── DateTime.cs ├── DateTimeKind.cs ├── DateTimeOffset.cs ├── DayOfWeek.cs ├── Decimal.cs ├── DefaultBinder.cs ├── Delegate.cs ├── DelegateSerializationHolder.cs ├── Diagnostics │ ├── Assert.cs │ ├── AssertFilter.cs │ ├── AssertFilters.cs │ ├── CodeAnalysis │ │ └── SuppressMessageAttribute.cs │ ├── ConditionalAttribute.cs │ ├── Contracts │ │ ├── Contracts.cs │ │ └── ContractsBCL.cs │ ├── Debugger.cs │ ├── DebuggerAttributes.cs │ ├── EditAndContinueHelper.cs │ ├── Eventing │ │ ├── ActivityTracker.cs │ │ ├── EventActivityOptions.cs │ │ ├── EventDescriptor.cs │ │ ├── EventProvider.cs │ │ ├── EventSource.cs │ │ ├── EventSourceException.cs │ │ ├── FrameworkEventSource.cs │ │ ├── StubEnvironment.cs │ │ ├── TraceLogging │ │ │ ├── ArrayTypeInfo.cs │ │ │ ├── ConcurrentSet.cs │ │ │ ├── ConcurrentSetItem.cs │ │ │ ├── DataCollector.cs │ │ │ ├── EmptyStruct.cs │ │ │ ├── EnumHelper.cs │ │ │ ├── EnumerableTypeInfo.cs │ │ │ ├── EventDataAttribute.cs │ │ │ ├── EventFieldAttribute.cs │ │ │ ├── EventFieldFormat.cs │ │ │ ├── EventIgnoreAttribute.cs │ │ │ ├── EventPayload.cs │ │ │ ├── EventSourceActivity.cs │ │ │ ├── EventSourceOptions.cs │ │ │ ├── FieldMetadata.cs │ │ │ ├── InvokeTypeInfo.cs │ │ │ ├── NameInfo.cs │ │ │ ├── PropertyAccessor.cs │ │ │ ├── PropertyAnalysis.cs │ │ │ ├── SimpleEventTypes.cs │ │ │ ├── SimpleTypeInfos.cs │ │ │ ├── Statics.cs │ │ │ ├── TraceLoggingDataCollector.cs │ │ │ ├── TraceLoggingDataType.cs │ │ │ ├── TraceLoggingEventSource.cs │ │ │ ├── TraceLoggingEventTraits.cs │ │ │ ├── TraceLoggingEventTypes.cs │ │ │ ├── TraceLoggingMetadataCollector.cs │ │ │ ├── TraceLoggingTypeInfo.cs │ │ │ ├── TraceLoggingTypeInfo_T.cs │ │ │ └── TypeAnalysis.cs │ │ └── Winmeta.cs │ ├── ICustomDebuggerNotification.cs │ ├── LogSwitch.cs │ ├── LoggingLevels.cs │ ├── Stackframe.cs │ ├── Stacktrace.cs │ ├── SymbolStore │ │ ├── ISymBinder.cs │ │ ├── ISymDocument.cs │ │ ├── ISymDocumentWriter.cs │ │ ├── ISymMethod.cs │ │ ├── ISymNamespace.cs │ │ ├── ISymReader.cs │ │ ├── ISymScope.cs │ │ ├── ISymVariable.cs │ │ ├── ISymWriter.cs │ │ ├── SymAddressKind.cs │ │ ├── SymDocumentType.cs │ │ ├── SymLanguageType.cs │ │ ├── SymLanguageVendor.cs │ │ └── Token.cs │ └── log.cs ├── DivideByZeroException.cs ├── DllNotFoundException.cs ├── Double.cs ├── DuplicateWaitObjectException.cs ├── Empty.cs ├── EntryPointNotFoundException.cs ├── Enum.cs ├── Environment.cs ├── EventArgs.cs ├── EventHandler.cs ├── Exception.cs ├── ExecutionEngineException.cs ├── FieldAccessException.cs ├── FlagsAttribute.cs ├── FormatException.cs ├── FormattableString.cs ├── GC.cs ├── Globalization │ ├── BidiCategory.cs │ ├── Calendar.cs │ ├── CalendarAlgorithmType.cs │ ├── CalendarData.cs │ ├── CalendarWeekRule.cs │ ├── CalendricalCalculationsHelper.cs │ ├── CharUnicodeInfo.cs │ ├── ChineseLunisolarCalendar.cs │ ├── CompareInfo.cs │ ├── CultureData.cs │ ├── CultureInfo.cs │ ├── CultureNotFoundException.cs │ ├── CultureTypes.cs │ ├── DateTimeFormat.cs │ ├── DateTimeFormatInfo.cs │ ├── DateTimeFormatInfoScanner.cs │ ├── DateTimeParse.cs │ ├── DateTimeStyles.cs │ ├── DaylightTime.cs │ ├── DigitShapes.cs │ ├── EastAsianLunisolarCalendar.cs │ ├── EncodingDataItem.Unix.cs │ ├── EncodingDataItem.cs │ ├── EncodingTable.Unix.cs │ ├── EncodingTable.cs │ ├── GlobalizationAssembly.cs │ ├── GregorianCalendar.cs │ ├── GregorianCalendarHelper.cs │ ├── GregorianCalendarTypes.cs │ ├── HebrewCalendar.cs │ ├── HebrewNumber.cs │ ├── HijriCalendar.cs │ ├── IdnMapping.cs │ ├── JapaneseCalendar.cs │ ├── JapaneseLunisolarCalendar.cs │ ├── JulianCalendar.cs │ ├── KoreanCalendar.cs │ ├── KoreanLunisolarCalendar.cs │ ├── NumberFormatInfo.cs │ ├── NumberStyles.cs │ ├── PersianCalendar.cs │ ├── RegionInfo.cs │ ├── SortKey.cs │ ├── StringInfo.cs │ ├── Tables │ │ └── charinfo.nlp │ ├── TaiwanCalendar.cs │ ├── TaiwanLunisolarCalendar.cs │ ├── TextElementEnumerator.cs │ ├── TextInfo.cs │ ├── ThaiBuddhistCalendar.cs │ ├── TimeSpanFormat.cs │ ├── TimeSpanParse.cs │ ├── TimeSpanStyles.cs │ ├── UmAlQuraCalendar.cs │ └── UnicodeCategory.cs ├── Guid.cs ├── IAppDomain.cs ├── IAppDomainPauseManager.cs ├── IAppDomainSetup.cs ├── IAsyncResult.cs ├── ICloneable.cs ├── IComparable.cs ├── IConvertible.cs ├── ICustomFormatter.cs ├── IDisposable.cs ├── IEquatable.cs ├── IFormatProvider.cs ├── IFormattable.cs ├── IO │ ├── BinaryReader.cs │ ├── BinaryWriter.cs │ ├── BufferedStream.cs │ ├── Directory.cs │ ├── DirectoryInfo.cs │ ├── DirectoryNotFoundException.cs │ ├── DriveInfo.cs │ ├── DriveNotFoundException.cs │ ├── EndOfStreamException.cs │ ├── File.cs │ ├── FileAccess.cs │ ├── FileAttributes.cs │ ├── FileInfo.cs │ ├── FileLoadException.cs │ ├── FileMode.cs │ ├── FileNotFoundException.cs │ ├── FileOptions.cs │ ├── FileSecurityState.cs │ ├── FileSecurityStateAccess.cs │ ├── FileShare.cs │ ├── FileStream.cs │ ├── FileSystemEnumerable.cs │ ├── FileSystemInfo.cs │ ├── IOException.cs │ ├── IsolatedStorage │ │ ├── IsolatedStorageAccountingInfo.cs │ │ ├── IsolatedStorageException.cs │ │ ├── IsolatedStorageFileSmall.cs │ │ ├── IsolatedStorageFileStream.cs │ │ ├── IsolatedStorageGroup.cs │ │ ├── IsolatedStorageSecurityState.cs │ │ └── __HResults.cs │ ├── MemoryStream.cs │ ├── Path.cs │ ├── PathHelper.cs │ ├── PathTooLongException.cs │ ├── PinnedBufferMemoryStream.cs │ ├── ReadLinesIterator.cs │ ├── SearchOption.cs │ ├── SeekOrigin.cs │ ├── Stream.cs │ ├── StreamReader.cs │ ├── StreamWriter.cs │ ├── StringReader.cs │ ├── StringWriter.cs │ ├── TextReader.cs │ ├── TextWriter.cs │ ├── UnmanagedMemoryAccessor.cs │ ├── UnmanagedMemoryStream.cs │ ├── UnmanagedMemoryStreamWrapper.cs │ ├── __ConsoleStream.cs │ ├── __DebugOutputTextWriter.cs │ ├── __Error.cs │ └── __HResults.cs ├── IObservable.cs ├── IObserver.cs ├── IProgress.cs ├── IServiceObjectProvider.cs ├── IndexOutOfRangeException.cs ├── InsufficientExecutionStackException.cs ├── InsufficientMemoryException.cs ├── Int16.cs ├── Int32.cs ├── Int64.cs ├── IntPtr.cs ├── Internal.cs ├── InvalidCastException.cs ├── InvalidOperationException.cs ├── InvalidProgramException.cs ├── InvalidTimeZoneException.cs ├── Lazy.cs ├── MarshalByRefObject.cs ├── Math.cs ├── MemberAccessException.cs ├── MethodAccessException.cs ├── MidpointRounding.cs ├── MissingFieldException.cs ├── MissingMemberException.cs ├── MissingMethodException.cs ├── MulticastDelegate.cs ├── MulticastNotSupportedException.cs ├── NonSerializedAttribute.cs ├── NotFiniteNumberException.cs ├── NotImplementedException.cs ├── NotSupportedException.cs ├── NullReferenceException.cs ├── Nullable.cs ├── Number.cs ├── Object.cs ├── ObjectDisposedException.cs ├── ObsoleteAttribute.cs ├── OleAutBinder.cs ├── OperatingSystem.cs ├── OperationCanceledException.cs ├── OutOfMemoryException.cs ├── OverflowException.cs ├── ParamArrayAttribute.cs ├── ParamsArray.cs ├── ParseNumbers.cs ├── PlatformID.cs ├── PlatformNotSupportedException.cs ├── Platforms.cs ├── Progress.cs ├── Random.cs ├── RankException.cs ├── Reflection │ ├── AmbiguousMatchException.cs │ ├── Assembly.cs │ ├── AssemblyAttributes.cs │ ├── AssemblyName.cs │ ├── AssemblyNameFlags.cs │ ├── AssemblyNameProxy.cs │ ├── Associates.cs │ ├── Binder.cs │ ├── BindingFlags.cs │ ├── CallingConventions.cs │ ├── ComInterfaces.cs │ ├── ConstructorInfo.cs │ ├── CustomAttribute.cs │ ├── CustomAttributeExtensions.cs │ ├── CustomAttributeFormatException.cs │ ├── DefaultMemberAttribute.cs │ ├── Emit │ │ ├── AQNBuilder.cs │ │ ├── AssemblyBuilder.cs │ │ ├── AssemblyBuilderAccess.cs │ │ ├── AssemblyBuilderData.cs │ │ ├── ComInterfaces.cs │ │ ├── ConstructorBuilder.cs │ │ ├── CustomAttributeBuilder.cs │ │ ├── DynamicILGenerator.cs │ │ ├── DynamicMethod.cs │ │ ├── EnumBuilder.cs │ │ ├── EventBuilder.cs │ │ ├── EventToken.cs │ │ ├── FieldBuilder.cs │ │ ├── FieldToken.cs │ │ ├── FlowControl.cs │ │ ├── GenericTypeParameterBuilder.cs │ │ ├── ILGenerator.cs │ │ ├── ISymWrapperCore.cs │ │ ├── Label.cs │ │ ├── LocalBuilder.cs │ │ ├── MethodBuilder.cs │ │ ├── MethodBuilderInstantiation.cs │ │ ├── MethodToken.cs │ │ ├── ModuleBuilder.cs │ │ ├── ModuleBuilderData.cs │ │ ├── OpCodes.cs │ │ ├── Opcode.cs │ │ ├── OpcodeType.cs │ │ ├── OperandType.cs │ │ ├── PEFileKinds.cs │ │ ├── ParameterBuilder.cs │ │ ├── ParameterToken.cs │ │ ├── PropertyBuilder.cs │ │ ├── PropertyToken.cs │ │ ├── SignatureHelper.cs │ │ ├── SignatureToken.cs │ │ ├── StackBehaviour.cs │ │ ├── StringToken.cs │ │ ├── SymbolMethod.cs │ │ ├── SymbolType.cs │ │ ├── TypeBuilder.cs │ │ ├── TypeBuilderInstantiation.cs │ │ ├── TypeToken.cs │ │ ├── UnmanagedMarshal.cs │ │ └── XXXOnTypeBuilderInstantiation.cs │ ├── EventAttributes.cs │ ├── EventInfo.cs │ ├── FieldAttributes.cs │ ├── FieldInfo.cs │ ├── GenericParameterAttributes.cs │ ├── ICustomAttributeProvider.cs │ ├── IReflect.cs │ ├── IReflectableType.cs │ ├── InterfaceMapping.cs │ ├── IntrospectionExtensions.cs │ ├── InvalidFilterCriteriaException.cs │ ├── LoaderAllocator.cs │ ├── ManifestResourceInfo.cs │ ├── MdConstant.cs │ ├── MdImport.cs │ ├── MemberFilter.cs │ ├── MemberInfo.cs │ ├── MemberInfoSerializationHolder.cs │ ├── MemberTypes.cs │ ├── MethodAttributes.cs │ ├── MethodBase.cs │ ├── MethodBody.cs │ ├── MethodImplAttributes.cs │ ├── MethodInfo.cs │ ├── Missing.cs │ ├── Module.cs │ ├── ObfuscateAssemblyAttribute.cs │ ├── ObfuscationAttribute.cs │ ├── ParameterAttributes.cs │ ├── ParameterInfo.cs │ ├── ParameterModifier.cs │ ├── Pointer.cs │ ├── PropertyAttributes.cs │ ├── PropertyInfo.cs │ ├── ReflectionContext.cs │ ├── ReflectionTypeLoadException.cs │ ├── ResourceAttributes.cs │ ├── RuntimeReflectionExtensions.cs │ ├── StrongNameKeyPair.cs │ ├── TargetException.cs │ ├── TargetInvocationException.cs │ ├── TargetParameterCountException.cs │ ├── TypeAttributes.cs │ ├── TypeDelegator.cs │ ├── TypeFilter.cs │ ├── TypeInfo.cs │ └── __Filters.cs ├── ResId.cs ├── Resources │ ├── FileBasedResourceGroveler.cs │ ├── IResourceGroveler.cs │ ├── IResourceReader.cs │ ├── IResourceWriter.cs │ ├── LooselyLinkedResourceReference.cs │ ├── ManifestBasedResourceGroveler.cs │ ├── MissingManifestResourceException.cs │ ├── MissingSatelliteAssemblyException.cs │ ├── NeutralResourcesLanguageAttribute.cs │ ├── ResourceFallbackManager.cs │ ├── ResourceManager.cs │ ├── ResourceReader.cs │ ├── ResourceSet.cs │ ├── ResourceTypeCode.cs │ ├── RuntimeResourceSet.cs │ ├── SatelliteContractVersionAttribute.cs │ ├── UltimateResourceFallbackLocation.cs │ ├── __FastResourceComparer.cs │ └── __HResults.cs ├── RtType.cs ├── Runtime │ ├── CompilerServices │ │ ├── AccessedThroughPropertyAttribute.cs │ │ ├── AssemblyAttributesGoHere.cs │ │ ├── AssemblySettingAttributes.cs │ │ ├── AsyncMethodBuilder.cs │ │ ├── AsyncStateMachineAttribute.cs │ │ ├── CallerFilePathAttribute.cs │ │ ├── CallerLineNumberAttribute.cs │ │ ├── CallerMemberNameAttribute.cs │ │ ├── CallingConvention.cs │ │ ├── CompilationRelaxations.cs │ │ ├── CompilerGeneratedAttribute.cs │ │ ├── CompilerGlobalScopeAttribute.cs │ │ ├── CompilerMarshalOverride.cs │ │ ├── ConditionalWeakTable.cs │ │ ├── CustomConstantAttribute.cs │ │ ├── DateTimeConstantAttribute.cs │ │ ├── DecimalConstantAttribute.cs │ │ ├── DecoratedNameAttribute.cs │ │ ├── DisablePrivateReflectionAttribute.cs │ │ ├── DiscardableAttribute.cs │ │ ├── ExtensionAttribute.cs │ │ ├── FixedAddressValueTypeAttribute.cs │ │ ├── FixedBufferAttribute.cs │ │ ├── FormattableStringFactory.cs │ │ ├── HasCopySemanticsAttribute.cs │ │ ├── IAsyncStateMachine.cs │ │ ├── IDispatchConstantAttribute.cs │ │ ├── INotifyCompletion.cs │ │ ├── IUnknownConstantAttribute.cs │ │ ├── IndexerNameAttribute.cs │ │ ├── InternalsVisibleToAttribute.cs │ │ ├── IsBoxed.cs │ │ ├── IsByValue.cs │ │ ├── IsConst.cs │ │ ├── IsCopyConstructed.cs │ │ ├── IsExplicitlyDereferenced.cs │ │ ├── IsImplicitlyDereferenced.cs │ │ ├── IsJitIntrinsic.cs │ │ ├── IsLong.cs │ │ ├── IsPinned.cs │ │ ├── IsSignUnspecifiedByte.cs │ │ ├── IsUdtReturn.cs │ │ ├── IsVolatile.cs │ │ ├── IteratorStateMachineAttribute.cs │ │ ├── MethodImplAttribute.cs │ │ ├── NativeCppClassAttribute.cs │ │ ├── ReferenceAssemblyAttribute.cs │ │ ├── RequiredAttributeAttribute.cs │ │ ├── RuntimeCompatibilityAttribute.cs │ │ ├── RuntimeHelpers.cs │ │ ├── RuntimeWrappedException.cs │ │ ├── ScopelessEnumAttribute.cs │ │ ├── SpecialNameAttribute.cs │ │ ├── StateMachineAttribute.cs │ │ ├── SuppressIldasmAttribute.cs │ │ ├── SuppressMergeCheckAttribute.cs │ │ ├── TaskAwaiter.cs │ │ ├── TypeDependencyAttribute.cs │ │ ├── TypeForwardedFromAttribute.cs │ │ ├── TypeForwardedToAttribute.cs │ │ ├── UnsafeValueTypeAttribute.cs │ │ ├── YieldAwaitable.cs │ │ └── jithelpers.cs │ ├── ExceptionServices │ │ ├── CorruptingExceptionCommon.cs │ │ └── ExceptionServicesCommon.cs │ ├── GcSettings.cs │ ├── InteropServices │ │ ├── ArrayWithOffset.cs │ │ ├── Attributes.cs │ │ ├── BStrWrapper.cs │ │ ├── COMException.cs │ │ ├── CallingConvention.cs │ │ ├── CharSet.cs │ │ ├── ComEventsHelper.cs │ │ ├── ComEventsInfo.cs │ │ ├── ComEventsMethod.cs │ │ ├── ComEventsSink.cs │ │ ├── ComMemberType.cs │ │ ├── ComTypes │ │ │ ├── IBindCtx.cs │ │ │ ├── IConnectionPoint.cs │ │ │ ├── IConnectionPointContainer.cs │ │ │ ├── IEnumConnectionPoints.cs │ │ │ ├── IEnumConnections.cs │ │ │ ├── IEnumMoniker.cs │ │ │ ├── IEnumString.cs │ │ │ ├── IEnumVARIANT.cs │ │ │ ├── IEnumerable.cs │ │ │ ├── IEnumerator.cs │ │ │ ├── IExpando.cs │ │ │ ├── IMoniker.cs │ │ │ ├── IPersistFile.cs │ │ │ ├── IReflect.cs │ │ │ ├── IRunningObjectTable.cs │ │ │ ├── IStream.cs │ │ │ ├── ITypeComp.cs │ │ │ ├── ITypeInfo.cs │ │ │ ├── ITypeInfo2.cs │ │ │ ├── ITypeLib.cs │ │ │ └── ITypeLib2.cs │ │ ├── CriticalHandle.cs │ │ ├── CurrencyWrapper.cs │ │ ├── DispatchWrapper.cs │ │ ├── ErrorWrapper.cs │ │ ├── Expando │ │ │ └── IExpando.cs │ │ ├── ExtensibleClassFactory.cs │ │ ├── ExternalException.cs │ │ ├── GCHandleCookieTable.cs │ │ ├── GcHandle.cs │ │ ├── HandleRef.cs │ │ ├── ICustomAdapter.cs │ │ ├── ICustomFactory.cs │ │ ├── ICustomMarshaler.cs │ │ ├── ICustomQueryInterface.cs │ │ ├── IException.cs │ │ ├── IRegistrationServices.cs │ │ ├── ITypeLibConverter.cs │ │ ├── InvalidComObjectException.cs │ │ ├── InvalidOleVariantTypeException.cs │ │ ├── LayoutKind.cs │ │ ├── Marshal.cs │ │ ├── MarshalDirectiveException.cs │ │ ├── NativeMethods.cs │ │ ├── NonPortable.cs │ │ ├── ObjectCreationDelegate.cs │ │ ├── PInvokeMap.cs │ │ ├── RegistrationServices.cs │ │ ├── RuntimeEnvironment.cs │ │ ├── SEHException.cs │ │ ├── SafeArrayRankMismatchException.cs │ │ ├── SafeArrayTypeMismatchException.cs │ │ ├── SafeBuffer.cs │ │ ├── SafeHandle.cs │ │ ├── TCEAdapterGen │ │ │ ├── EventItfInfo.cs │ │ │ ├── EventProviderWriter.cs │ │ │ ├── EventSinkHelperWriter.cs │ │ │ ├── NameSpaceExtractor.cs │ │ │ └── TCEAdapterGenerator.cs │ │ ├── TypeLibConverter.cs │ │ ├── UCOMIBindCtx.cs │ │ ├── UCOMIConnectionPoint.cs │ │ ├── UCOMIConnectionPointContainer.cs │ │ ├── UCOMIEnumConnectionPoints.cs │ │ ├── UCOMIEnumConnections.cs │ │ ├── UCOMIEnumMoniker.cs │ │ ├── UCOMIEnumString.cs │ │ ├── UCOMIEnumVARIANT.cs │ │ ├── UCOMIEnumerable.cs │ │ ├── UCOMIEnumerator.cs │ │ ├── UCOMIExpando.cs │ │ ├── UCOMIMoniker.cs │ │ ├── UCOMIPersistFile.cs │ │ ├── UCOMIReflect.cs │ │ ├── UCOMIRunningObjectTable.cs │ │ ├── UCOMIStream.cs │ │ ├── UCOMITypeComp.cs │ │ ├── UCOMITypeInfo.cs │ │ ├── UCOMITypeLib.cs │ │ ├── UnknownWrapper.cs │ │ ├── Variant.cs │ │ ├── VariantWrapper.cs │ │ └── WindowsRuntime │ │ │ ├── Attributes.cs │ │ │ ├── BindableVectorToCollectionAdapter.cs │ │ │ ├── BindableVectorToListAdapter.cs │ │ │ ├── CLRIKeyValuePairImpl.cs │ │ │ ├── CLRIPropertyValueImpl.cs │ │ │ ├── CLRIReferenceImpl.cs │ │ │ ├── ConstantSplittableMap.cs │ │ │ ├── CustomPropertyImpl.cs │ │ │ ├── DictionaryKeyCollection.cs │ │ │ ├── DictionaryToMapAdapter.cs │ │ │ ├── DictionaryValueCollection.cs │ │ │ ├── EnumeratorToIteratorAdapter.cs │ │ │ ├── EventRegistrationToken.cs │ │ │ ├── EventRegistrationTokenTable.cs │ │ │ ├── IActivationFactory.cs │ │ │ ├── IClosable.cs │ │ │ ├── ICustomProperty.cs │ │ │ ├── ICustomPropertyProvider.cs │ │ │ ├── IIterable.cs │ │ │ ├── IIterator.cs │ │ │ ├── IMap.cs │ │ │ ├── IMapViewToIReadOnlyDictionaryAdapter.cs │ │ │ ├── IPropertyValue.cs │ │ │ ├── IReadOnlyDictionaryToIMapViewAdapter.cs │ │ │ ├── IReadOnlyListToIVectorViewAdapter.cs │ │ │ ├── IReference.cs │ │ │ ├── IRestrictedErrorInfo.cs │ │ │ ├── IVector.cs │ │ │ ├── IVectorViewToIReadOnlyListAdapter.cs │ │ │ ├── IteratorToEnumeratorAdapter.cs │ │ │ ├── ListToBindableVectorAdapter.cs │ │ │ ├── ListToBindableVectorViewAdapter.cs │ │ │ ├── ListToVectorAdapter.cs │ │ │ ├── ManagedActivationFactory.cs │ │ │ ├── MapToCollectionAdapter.cs │ │ │ ├── MapToDictionaryAdapter.cs │ │ │ ├── MapViewToReadOnlyCollectionAdapter.cs │ │ │ ├── NativeMethods.cs │ │ │ ├── PropertyValue.cs │ │ │ ├── RuntimeClass.cs │ │ │ ├── VectorToCollectionAdapter.cs │ │ │ ├── VectorToListAdapter.cs │ │ │ ├── VectorViewToReadOnlyCollectionAdapter.cs │ │ │ ├── WindowsFoundationEventHandler.cs │ │ │ ├── WindowsRuntimeBufferHelper.cs │ │ │ ├── WindowsRuntimeMarshal.cs │ │ │ └── WindowsRuntimeMetadata.cs │ ├── Loader │ │ └── AssemblyLoadContext.cs │ ├── MemoryFailPoint.cs │ ├── ProfileOptimization.cs │ ├── Reliability │ │ ├── CriticalFinalizerObject.cs │ │ ├── PrePrepareMethodAttribute.cs │ │ └── ReliabilityContractAttribute.cs │ ├── Remoting │ │ └── ObjectHandle.cs │ ├── Serialization │ │ ├── FormatterConverter.cs │ │ ├── FormatterServices.cs │ │ ├── Formatters │ │ │ ├── CommonEnums.cs │ │ │ ├── IFieldInfo.cs │ │ │ ├── ISoapMessage.cs │ │ │ ├── SerTrace.cs │ │ │ ├── SoapFault.cs │ │ │ └── SoapMessage.cs │ │ ├── IDeserializationCallback.cs │ │ ├── IFormatter.cs │ │ ├── IFormatterConverter.cs │ │ ├── IObjectReference.cs │ │ ├── ISerializable.cs │ │ ├── ISerializationSurrogate.cs │ │ ├── ISurrogateSelector.cs │ │ ├── MemberHolder.cs │ │ ├── SerializationAttributes.cs │ │ ├── SerializationBinder.cs │ │ ├── SerializationException.cs │ │ ├── SerializationFieldInfo.cs │ │ ├── SerializationInfo.cs │ │ ├── SerializationInfoEnumerator.cs │ │ └── StreamingContext.cs │ └── Versioning │ │ ├── BinaryCompatibility.cs │ │ ├── CompatibilitySwitch.cs │ │ ├── ComponentGuaranteesAttribute.cs │ │ ├── NonVersionableAttribute.cs │ │ ├── ResourceAttributes.cs │ │ ├── TargetFrameworkAttribute.cs │ │ └── TargetFrameworkId.cs ├── RuntimeArgumentHandle.cs ├── RuntimeHandles.cs ├── SByte.cs ├── Security │ ├── AccessControl │ │ └── Enums.cs │ ├── Attributes.cs │ ├── BuiltInPermissionSets.cs │ ├── CodeAccessPermission.cs │ ├── CodeAccessSecurityEngine.cs │ ├── Cryptography │ │ ├── Aes.cs │ │ ├── AsymmetricAlgorithm.cs │ │ ├── AsymmetricKeyExchangeDeformatter.cs │ │ ├── AsymmetricKeyExchangeFormatter.cs │ │ ├── AsymmetricSignatureDeformatter.cs │ │ ├── AsymmetricSignatureFormatter.cs │ │ ├── CapiNative.cs │ │ ├── Crypto.cs │ │ ├── CryptoConfig.cs │ │ ├── CryptoStream.cs │ │ ├── DES.cs │ │ ├── DSASignatureDeformatter.cs │ │ ├── DSASignatureFormatter.cs │ │ ├── DeriveBytes.cs │ │ ├── HMAC.cs │ │ ├── HMACMD5.cs │ │ ├── HMACRIPEMD160.cs │ │ ├── HMACSHA1.cs │ │ ├── HMACSHA256.cs │ │ ├── HMACSHA384.cs │ │ ├── HMACSHA512.cs │ │ ├── HashAlgorithm.cs │ │ ├── ICryptoTransform.cs │ │ ├── ICspAsymmetricAlgorithm.cs │ │ ├── KeyedHashAlgorithm.cs │ │ ├── MD5.cs │ │ ├── MD5CryptoServiceProvider.cs │ │ ├── MaskGenerationMethod.cs │ │ ├── PKCS1MaskGenerationMethod.cs │ │ ├── PasswordDeriveBytes.cs │ │ ├── RIPEMD160.cs │ │ ├── RIPEMD160Managed.cs │ │ ├── RNGCryptoServiceProvider.cs │ │ ├── RSACryptoServiceProvider.cs │ │ ├── RSAOAEPKeyExchangeDeformatter.cs │ │ ├── RSAOAEPKeyExchangeFormatter.cs │ │ ├── RSAPKCS1KeyExchangeDeformatter.cs │ │ ├── RSAPKCS1KeyExchangeFormatter.cs │ │ ├── RSAPKCS1SignatureDeformatter.cs │ │ ├── RSAPKCS1SignatureFormatter.cs │ │ ├── RandomNumberGenerator.cs │ │ ├── Rfc2898DeriveBytes.cs │ │ ├── Rijndael.cs │ │ ├── RijndaelManaged.cs │ │ ├── RijndaelManagedTransform.cs │ │ ├── SHA1.cs │ │ ├── SHA1CryptoServiceProvider.cs │ │ ├── SHA1Managed.cs │ │ ├── SHA256.cs │ │ ├── SHA256Managed.cs │ │ ├── SHA384.cs │ │ ├── SHA384Managed.cs │ │ ├── SHA512.cs │ │ ├── SHA512Managed.cs │ │ ├── SafeCryptoHandles.cs │ │ ├── SignatureDescription.cs │ │ ├── SymmetricAlgorithm.cs │ │ ├── TripleDES.cs │ │ ├── Utils.cs │ │ ├── X509Certificates │ │ │ ├── X509Certificate.cs │ │ │ ├── safex509handles.cs │ │ │ └── x509utils.cs │ │ ├── base64Transforms.cs │ │ ├── cryptoapiTransform.cs │ │ ├── dsa.cs │ │ ├── mactripleDES.cs │ │ └── rsa.cs │ ├── FrameSecurityDescriptor.cs │ ├── HostProtectionException.cs │ ├── HostSecurityManager.cs │ ├── IEvidenceFactory.cs │ ├── IPermission.cs │ ├── ISecurityEncodable.cs │ ├── ISecurityPolicyEncodable.cs │ ├── IStackWalk.cs │ ├── NamedPermissionSet.cs │ ├── PermissionListSet.cs │ ├── PermissionSet.cs │ ├── PermissionSetEnumerator.cs │ ├── PermissionSetTriple.cs │ ├── PermissionToken.cs │ ├── Permissions │ │ ├── EnvironmentPermission.cs │ │ ├── FileDialogPermission.cs │ │ ├── FileIOPermission.cs │ │ ├── GACIdentityPermission.cs │ │ ├── HostProtectionPermission.cs │ │ ├── IBuiltInPermission.cs │ │ ├── IUnrestrictedPermission.cs │ │ ├── IsolatedStorageFilePermission.cs │ │ ├── IsolatedStoragePermission.cs │ │ ├── PermissionAttributes.cs │ │ ├── PermissionState.cs │ │ ├── ReflectionPermission.cs │ │ ├── RegistryPermission.cs │ │ ├── SecurityPermission.cs │ │ ├── SiteIdentityPermission.cs │ │ ├── StrongNameIdentityPermission.cs │ │ ├── StrongNamePublicKeyBlob.cs │ │ ├── UIPermission.cs │ │ ├── URLIdentityPermission.cs │ │ ├── ZoneIdentityPermission.cs │ │ └── keycontainerpermission.cs │ ├── Policy │ │ ├── ApplicationTrust.cs │ │ ├── Evidence.cs │ │ ├── EvidenceBase.cs │ │ ├── EvidenceTypeDescriptor.cs │ │ ├── IDelayEvaluatedEvidence.cs │ │ ├── IIdentityPermissionFactory.cs │ │ ├── IRuntimeEvidenceFactory.cs │ │ ├── PolicyException.cs │ │ ├── PolicyStatement.cs │ │ ├── Site.cs │ │ ├── StrongName.cs │ │ ├── URL.cs │ │ └── Zone.cs │ ├── Principal │ │ ├── GenericIdentity.cs │ │ ├── GenericPrincipal.cs │ │ ├── IIdentity.cs │ │ ├── IPrincipal.cs │ │ ├── PrincipalPolicy.cs │ │ ├── TokenAccessLevels.cs │ │ └── TokenImpersonationLevel.cs │ ├── SafeSecurityHandles.cs │ ├── SecurityContext.cs │ ├── SecurityDocument.cs │ ├── SecurityElement.cs │ ├── SecurityException.cs │ ├── SecurityManager.cs │ ├── SecurityRuntime.cs │ ├── SecurityState.cs │ ├── SecurityZone.cs │ ├── Util │ │ ├── Config.cs │ │ ├── Hex.cs │ │ ├── Parser.cs │ │ ├── StringExpressionSet.cs │ │ ├── TokenBasedSet.cs │ │ ├── TokenBasedSetEnumerator.cs │ │ ├── Tokenizer.cs │ │ ├── URLString.cs │ │ ├── XMLUtil.cs │ │ └── sitestring.cs │ ├── VerificationException.cs │ ├── XMLSyntaxException.cs │ └── securestring.cs ├── SerializableAttribute.cs ├── SharedStatics.cs ├── Single.cs ├── StackOverflowException.cs ├── String.cs ├── StringComparer.cs ├── StringComparison.cs ├── StringFreezingAttribute.cs ├── StubHelpers.cs ├── SupportedPlatformsAttribute.cs ├── SystemException.cs ├── Text │ ├── ASCIIEncoding.cs │ ├── BaseCodePageEncoding.cs │ ├── CodePageEncoding.cs │ ├── DBCSCodePageEncoding.cs │ ├── Decoder.cs │ ├── DecoderBestFitFallback.cs │ ├── DecoderExceptionFallback.cs │ ├── DecoderFallback.cs │ ├── DecoderNLS.cs │ ├── DecoderReplacementFallback.cs │ ├── EUCJPEncoding.cs │ ├── Encoder.cs │ ├── EncoderBestFitFallback.cs │ ├── EncoderExceptionFallback.cs │ ├── EncoderFallback.cs │ ├── EncoderNLS.cs │ ├── EncoderReplacementFallback.cs │ ├── Encoding.cs │ ├── EncodingInfo.cs │ ├── EncodingNLS.cs │ ├── EncodingProvider.cs │ ├── GB18030Encoding.cs │ ├── ISCIIEncoding.cs │ ├── ISO2022Encoding.cs │ ├── Latin1Encoding.cs │ ├── MLangCodePageEncoding.cs │ ├── Normalization.cs │ ├── SBCSCodePageEncoding.cs │ ├── StringBuilder.cs │ ├── StringBuilderCache.cs │ ├── SurrogateEncoder.cs │ ├── UTF32Encoding.cs │ ├── UTF7Encoding.cs │ ├── UTF8Encoding.cs │ └── UnicodeEncoding.cs ├── ThreadAttributes.cs ├── ThreadStaticAttribute.cs ├── Threading │ ├── AbandonedMutexException.cs │ ├── ApartmentState.cs │ ├── AsyncLocal.cs │ ├── AutoResetEvent.cs │ ├── CancellationToken.cs │ ├── CancellationTokenRegistration.cs │ ├── CancellationTokenSource.cs │ ├── CountdownEvent.cs │ ├── EventResetMode.cs │ ├── EventWaitHandle.cs │ ├── ExecutionContext.cs │ ├── IObjectHandle.cs │ ├── Interlocked.cs │ ├── LazyInitializer.cs │ ├── LockCookie.cs │ ├── LockRecursionException.cs │ ├── ManualResetEvent.cs │ ├── ManualResetEventSlim.cs │ ├── Monitor.cs │ ├── Mutex.cs │ ├── Overlapped.cs │ ├── ParameterizedThreadStart.cs │ ├── ReaderWriterLock.cs │ ├── SemaphoreFullException.cs │ ├── SemaphoreSlim.cs │ ├── SendOrPostCallback.cs │ ├── SpinLock.cs │ ├── SpinWait.cs │ ├── SynchronizationContext.cs │ ├── SynchronizationLockException.cs │ ├── Tasks │ │ ├── AsyncCausalityTracer.cs │ │ ├── BeginEndAwaitableAdapter.cs │ │ ├── ConcurrentExclusiveSchedulerPair.cs │ │ ├── FutureFactory.cs │ │ ├── IAsyncCausalityTracerStatics.cs │ │ ├── Parallel.cs │ │ ├── ParallelLoopState.cs │ │ ├── ParallelRangeManager.cs │ │ ├── ProducerConsumerQueues.cs │ │ ├── TPLETWProvider.cs │ │ ├── Task.cs │ │ ├── TaskCanceledException.cs │ │ ├── TaskCompletionSource.cs │ │ ├── TaskContinuation.cs │ │ ├── TaskExceptionHolder.cs │ │ ├── TaskFactory.cs │ │ ├── TaskScheduler.cs │ │ ├── TaskSchedulerException.cs │ │ ├── TaskToApm.cs │ │ ├── ThreadPoolTaskScheduler.cs │ │ └── future.cs │ ├── Thread.cs │ ├── ThreadAbortException.cs │ ├── ThreadInterruptedException.cs │ ├── ThreadLocal.cs │ ├── ThreadPool.cs │ ├── ThreadPriority.cs │ ├── ThreadStart.cs │ ├── ThreadStartException.cs │ ├── ThreadState.cs │ ├── ThreadStateException.cs │ ├── Timeout.cs │ ├── Timer.cs │ ├── Volatile.cs │ ├── WaitHandle.cs │ ├── WaitHandleCannotBeOpenedException.cs │ └── WaitHandleExtensions.cs ├── ThrowHelper.cs ├── TimeSpan.cs ├── TimeZoneInfo.cs ├── TimeZoneNotFoundException.cs ├── TimeoutException.cs ├── Tuple.cs ├── Type.cs ├── TypeAccessException.cs ├── TypeCode.cs ├── TypeInitializationException.cs ├── TypeLoadException.cs ├── TypeNameParser.cs ├── TypeUnloadedException.cs ├── TypedReference.cs ├── UInt16.cs ├── UInt32.cs ├── UInt64.cs ├── UIntPtr.cs ├── UnSafeCharBuffer.cs ├── UnauthorizedAccessException.cs ├── UnhandledExceptionEventArgs.cs ├── UnhandledExceptionEventHandler.cs ├── UnitySerializationHolder.cs ├── ValueType.cs ├── Variant.cs ├── Version.cs ├── Void.cs ├── WeakReference.cs ├── WeakReferenceOfT.cs ├── XmlIgnoreMemberAttribute.cs ├── _LocalDataStore.cs ├── _LocalDataStoreMgr.cs ├── __ComObject.cs ├── __Filters.cs ├── __HResults.cs ├── cominterfaces.cs └── mda.cs ├── mscorlib.Friends.cs └── mscorlib.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/README.md -------------------------------------------------------------------------------- /deps/Mono.Options/Mono.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/deps/Mono.Options/Mono.Options.dll -------------------------------------------------------------------------------- /deps/NUnit/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/deps/NUnit/nunit.framework.dll -------------------------------------------------------------------------------- /deps/NUnit/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/deps/NUnit/nunit.framework.xml -------------------------------------------------------------------------------- /deps/build_llvm_clang_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/deps/build_llvm_clang_linux.sh -------------------------------------------------------------------------------- /deps/build_llvm_clang_vs2012.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/deps/build_llvm_clang_vs2012.bat -------------------------------------------------------------------------------- /deps/build_llvm_clang_vs2013_x32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/deps/build_llvm_clang_vs2013_x32.bat -------------------------------------------------------------------------------- /deps/build_llvm_clang_vs2013_x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/deps/build_llvm_clang_vs2013_x64.bat -------------------------------------------------------------------------------- /docs/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/docs/GettingStarted.md -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(SharpLang.Runtime) 2 | -------------------------------------------------------------------------------- /src/SharpLLVM.Native/Additional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM.Native/Additional.cpp -------------------------------------------------------------------------------- /src/SharpLLVM.Native/Additional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM.Native/Additional.h -------------------------------------------------------------------------------- /src/SharpLLVM.Native/DebugInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM.Native/DebugInfo.cpp -------------------------------------------------------------------------------- /src/SharpLLVM.Native/DebugInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM.Native/DebugInfo.h -------------------------------------------------------------------------------- /src/SharpLLVM.Native/LLVM_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM.Native/LLVM_wrap.cpp -------------------------------------------------------------------------------- /src/SharpLLVM.Native/SharpLLVM.Native.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM.Native/SharpLLVM.Native.vcxproj -------------------------------------------------------------------------------- /src/SharpLLVM.Native/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM.Native/premake4.lua -------------------------------------------------------------------------------- /src/SharpLLVM.Native/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM.Native/stdbool.h -------------------------------------------------------------------------------- /src/SharpLLVM.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SharpLLVM.Tests/SharpLLVM.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM.Tests/SharpLLVM.Tests.csproj -------------------------------------------------------------------------------- /src/SharpLLVM.Tests/TestLLVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM.Tests/TestLLVM.cs -------------------------------------------------------------------------------- /src/SharpLLVM.Tests/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM.Tests/premake4.lua -------------------------------------------------------------------------------- /src/SharpLLVM/Additional/DIDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/Additional/DIDescriptor.cs -------------------------------------------------------------------------------- /src/SharpLLVM/Additional/Intrinsics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/Additional/Intrinsics.cs -------------------------------------------------------------------------------- /src/SharpLLVM/Additional/Intrinsics.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/Additional/Intrinsics.tt -------------------------------------------------------------------------------- /src/SharpLLVM/Additional/TypeRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/Additional/TypeRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/Additional/ValueRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/Additional/ValueRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/AtomicOrdering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/AtomicOrdering.cs -------------------------------------------------------------------------------- /src/SharpLLVM/AtomicRMWBinOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/AtomicRMWBinOp.cs -------------------------------------------------------------------------------- /src/SharpLLVM/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/Attribute.cs -------------------------------------------------------------------------------- /src/SharpLLVM/BasicBlockRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/BasicBlockRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/Bindings/LLVM.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/Bindings/LLVM.i -------------------------------------------------------------------------------- /src/SharpLLVM/Bindings/LLVMCommon.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/Bindings/LLVMCommon.i -------------------------------------------------------------------------------- /src/SharpLLVM/Bindings/generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/Bindings/generate.bat -------------------------------------------------------------------------------- /src/SharpLLVM/BuilderRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/BuilderRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/ByteOrdering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/ByteOrdering.cs -------------------------------------------------------------------------------- /src/SharpLLVM/CallConv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/CallConv.cs -------------------------------------------------------------------------------- /src/SharpLLVM/CodeGenFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/CodeGenFileType.cs -------------------------------------------------------------------------------- /src/SharpLLVM/CodeGenOptLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/CodeGenOptLevel.cs -------------------------------------------------------------------------------- /src/SharpLLVM/CodeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/CodeModel.cs -------------------------------------------------------------------------------- /src/SharpLLVM/ContextRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/ContextRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/DIBuilderRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/DIBuilderRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/DIDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/DIDescriptor.cs -------------------------------------------------------------------------------- /src/SharpLLVM/DLLStorageClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/DLLStorageClass.cs -------------------------------------------------------------------------------- /src/SharpLLVM/DiagnosticInfoRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/DiagnosticInfoRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/DiagnosticSeverity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/DiagnosticSeverity.cs -------------------------------------------------------------------------------- /src/SharpLLVM/IntPredicate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/IntPredicate.cs -------------------------------------------------------------------------------- /src/SharpLLVM/LLVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/LLVM.cs -------------------------------------------------------------------------------- /src/SharpLLVM/LLVMPINVOKE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/LLVMPINVOKE.cs -------------------------------------------------------------------------------- /src/SharpLLVM/LandingPadClauseTy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/LandingPadClauseTy.cs -------------------------------------------------------------------------------- /src/SharpLLVM/Linkage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/Linkage.cs -------------------------------------------------------------------------------- /src/SharpLLVM/MemoryBufferRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/MemoryBufferRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/MemoryTargetRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/MemoryTargetRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/ModuleProviderRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/ModuleProviderRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/ModuleRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/ModuleRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/Opcode.cs -------------------------------------------------------------------------------- /src/SharpLLVM/PassManagerBuilderRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/PassManagerBuilderRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/PassManagerRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/PassManagerRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/PassRegistryRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/PassRegistryRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SharpLLVM/RealPredicate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/RealPredicate.cs -------------------------------------------------------------------------------- /src/SharpLLVM/RelocMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/RelocMode.cs -------------------------------------------------------------------------------- /src/SharpLLVM/SWIGTYPE_p_f_p_q_const__char__void.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/SWIGTYPE_p_f_p_q_const__char__void.cs -------------------------------------------------------------------------------- /src/SharpLLVM/SWIGTYPE_p_unsigned_int.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/SWIGTYPE_p_unsigned_int.cs -------------------------------------------------------------------------------- /src/SharpLLVM/SharpLLVM.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/SharpLLVM.csproj -------------------------------------------------------------------------------- /src/SharpLLVM/TargetDataRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/TargetDataRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/TargetLibraryInfoRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/TargetLibraryInfoRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/TargetMachineRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/TargetMachineRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/TargetRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/TargetRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/ThreadLocalMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/ThreadLocalMode.cs -------------------------------------------------------------------------------- /src/SharpLLVM/TypeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/TypeKind.cs -------------------------------------------------------------------------------- /src/SharpLLVM/TypeRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/TypeRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/UseRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/UseRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/ValueRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/ValueRef.cs -------------------------------------------------------------------------------- /src/SharpLLVM/VerifierFailureAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/VerifierFailureAction.cs -------------------------------------------------------------------------------- /src/SharpLLVM/Visibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/Visibility.cs -------------------------------------------------------------------------------- /src/SharpLLVM/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLLVM/premake4.lua -------------------------------------------------------------------------------- /src/SharpLang.Compiler.Tests/TestFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler.Tests/TestFiles.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler.Tests/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler.Tests/premake4.lua -------------------------------------------------------------------------------- /src/SharpLang.Compiler/ABIParameterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/ABIParameterInfo.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/ABIParameterInfoKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/ABIParameterInfoKind.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/App.config -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Cecil/CecilExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Cecil/CecilExtensions.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Class.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Compiler.Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Compiler.Class.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Compiler.CommonTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Compiler.CommonTypes.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Compiler.Delegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Compiler.Delegate.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Compiler.Emit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Compiler.Emit.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Compiler.Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Compiler.Function.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Compiler.MarkExternals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Compiler.MarkExternals.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Compiler.Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Compiler.Options.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Compiler.PInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Compiler.PInvoke.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Compiler.Scope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Compiler.Scope.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Compiler.StackConversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Compiler.StackConversion.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Compiler.Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Compiler.Type.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Compiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Compiler.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/DefaultABI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/DefaultABI.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Driver.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/ExceptionHandlerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/ExceptionHandlerInfo.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/ExtraTypeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/ExtraTypeKind.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Field.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Function.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/FunctionCompilerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/FunctionCompilerContext.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/FunctionParameterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/FunctionParameterType.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/FunctionSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/FunctionSignature.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/FunctionStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/FunctionStack.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/IABI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/IABI.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/InstructionFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/InstructionFlags.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Marshalling/Marshaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Marshalling/Marshaller.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/MemberEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/MemberEqualityComparer.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/ObjectFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/ObjectFields.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Program.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/RuntimeInline/Runtime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/RuntimeInline/Runtime.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/RuntimeTypeInfoFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/RuntimeTypeInfoFields.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Scope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Scope.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/SharpLang.Compiler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/SharpLang.Compiler.csproj -------------------------------------------------------------------------------- /src/SharpLang.Compiler/StackExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/StackExtensions.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/StackValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/StackValue.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/StackValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/StackValueType.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Toolchains/MSVCToolchain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Toolchains/MSVCToolchain.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Type.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/TypeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/TypeState.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/Utils/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/Utils/Utils.cs -------------------------------------------------------------------------------- /src/SharpLang.Compiler/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Compiler/premake4.lua -------------------------------------------------------------------------------- /src/SharpLang.Runtime.Reflection/System/ArrayT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime.Reflection/System/ArrayT.cs -------------------------------------------------------------------------------- /src/SharpLang.Runtime.Reflection/System/String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime.Reflection/System/String.cs -------------------------------------------------------------------------------- /src/SharpLang.Runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/CMakeLists.txt -------------------------------------------------------------------------------- /src/SharpLang.Runtime/ConvertUTF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/ConvertUTF.c -------------------------------------------------------------------------------- /src/SharpLang.Runtime/ConvertUTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/ConvertUTF.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/Exception.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/Internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/Internal.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/Marshal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/Marshal.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/RuntimeType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/RuntimeType.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/RuntimeType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/RuntimeType.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/CMakeLists.txt -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/gc/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/gc/gc.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/gc/sample/etmdummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/gc/sample/etmdummy.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/check.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/check.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/check.inl -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/clr_std/algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/clr_std/algorithm -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/clr_std/utility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/clr_std/utility -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/clr_std/vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/clr_std/vector -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/clrconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/clrconfig.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/clrconfigvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/clrconfigvalues.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/clrtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/clrtypes.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/contract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/contract.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/cor.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/corerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/corerror.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/corerror.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/corerror.xml -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/corhdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/corhdr.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/corhlpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/corhlpr.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/corhlprpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/corhlprpriv.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/cortypeinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/cortypeinfo.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/crsttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/crsttypes.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/crtwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/crtwrap.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/daccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/daccess.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/debugmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/debugmacros.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/debugmacrosext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/debugmacrosext.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/debugreturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/debugreturn.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/entrypoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/entrypoints.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/ex.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/fstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/fstring.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/holder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/holder.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/iterator.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/log.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/loglf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/loglf.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/memoryrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/memoryrange.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/new.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/new.hpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/newapis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/newapis.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/palclr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/palclr.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/palclr_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/palclr_win.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/perfcounterdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/perfcounterdefs.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/perfcounters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/perfcounters.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/predeftlsslot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/predeftlsslot.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/registrywrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/registrywrapper.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/safemath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/safemath.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/safewrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/safewrap.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/sbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/sbuffer.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/sbuffer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/sbuffer.inl -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/sstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/sstring.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/sstring.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/sstring.inl -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/static_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/static_assert.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/staticcontract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/staticcontract.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/stresslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/stresslog.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/switches.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/unsafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/unsafe.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/utilcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/utilcode.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/volatile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/volatile.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/inc/winwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/inc/winwrap.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/.gitmirrorall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/.gitmirrorall -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/CMakeLists.txt -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/mbusafecrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/mbusafecrt.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/pal.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/pal_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/pal_assert.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/pal_char16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/pal_char16.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/pal_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/pal_endian.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/pal_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/pal_error.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/pal_mstypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/pal_mstypes.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/pal_safecrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/pal_safecrt.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/pal_unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/pal_unwind.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/accctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/accctrl.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/aclapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/aclapi.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/assert.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/atl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/atl.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/atlcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/atlcom.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/atlwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/atlwin.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/ccombstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/ccombstr.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/commctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/commctrl.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/commdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/commdlg.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/common.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/common.ver -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/conio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/conio.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/crtdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/crtdbg.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/cstdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/cstdlib -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/cstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/cstring.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/ctype.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/dbghelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/dbghelp.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/eh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/eh.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/errorrep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/errorrep.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/fcntl.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/float.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/guiddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/guiddef.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/hstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/hstring.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/htmlhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/htmlhelp.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/imagehlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/imagehlp.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/intrin.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/intsafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/intsafe.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/io.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/limits.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/malloc.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/math.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/mbstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/mbstring.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/memory.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/new.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/no_sal2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/no_sal2.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/ntimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/ntimage.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/oaidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/oaidl.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/objbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/objbase.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/objidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/objidl.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/ocidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/ocidl.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/ole2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/ole2.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/oleauto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/oleauto.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/olectl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/olectl.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/oleidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/oleidl.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/palrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/palrt.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/poppack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/poppack.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/process.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/psapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/psapi.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/pshpack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/pshpack1.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/pshpack2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/pshpack2.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/pshpack4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/pshpack4.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/pshpack8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/pshpack8.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/pshpck16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/pshpck16.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/richedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/richedit.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/rpc.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/rpcndr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/rpcndr.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/safecrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/safecrt.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/sal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/sal.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/servprov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/servprov.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/share.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/shellapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/shellapi.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/shlobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/shlobj.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/shlwapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/shlwapi.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/stdarg.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/stddef.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/stdint.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/stdio.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/stdlib.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/string.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/symcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/symcrypt.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/tchar.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/time.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/tlhelp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/tlhelp32.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/unknwn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/unknwn.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/urlmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/urlmon.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/verrsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/verrsrc.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/vsassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/vsassert.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/wchar.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/winbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/winbase.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/wincrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/wincrypt.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/windef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/windef.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/windows.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/winerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/winerror.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/wininet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/wininet.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/winnls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/winnls.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/winnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/winnt.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/winresrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/winresrc.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/winuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/winuser.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/winver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/winver.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/rt/wtsapi32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/rt/wtsapi32.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/inc/strsafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/inc/strsafe.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/src/.tpattributes: -------------------------------------------------------------------------------- 1 | configure:x 2 | -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/src/config.h.in -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/src/file/disk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/src/file/disk.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/src/file/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/src/file/file.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/src/file/find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/src/file/find.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/src/file/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/src/file/path.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/src/init/pal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/src/init/pal.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/src/init/sxs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/src/init/sxs.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/src/map/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/src/map/common.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/src/map/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/src/map/map.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/src/misc/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/src/misc/time.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/src/sync/cs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/src/sync/cs.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/c_runtime/feof/test1/testfile: -------------------------------------------------------------------------------- 1 | This is a test. -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/c_runtime/ferror/test1/testfile: -------------------------------------------------------------------------------- 1 | This is a test. -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/c_runtime/fread/test1/testfile: -------------------------------------------------------------------------------- 1 | This is a test. -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/c_runtime/fread/test2/testfile: -------------------------------------------------------------------------------- 1 | This is a test. -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/c_runtime/fread/test3/testfile: -------------------------------------------------------------------------------- 1 | This is a test. -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/c_runtime/ftell/test1/testfile.txt: -------------------------------------------------------------------------------- 1 | The quick brown fox jumped over the lazy dog's back. -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/c_runtime/ungetc/test2/test2.txt: -------------------------------------------------------------------------------- 1 | foo bar -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/CopyFileW/test1/ExpectedResults.txt: -------------------------------------------------------------------------------- 1 | 10110000 -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/GetFileAttributesA/test1/.hidden_file: -------------------------------------------------------------------------------- 1 | Hidden file -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/GetFileAttributesA/test1/.hidden_ro_file: -------------------------------------------------------------------------------- 1 | .hidden_ro_file 2 | -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/GetFileAttributesA/test1/no_file: -------------------------------------------------------------------------------- 1 | No attribs file -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/GetFileAttributesA/test1/rw_file: -------------------------------------------------------------------------------- 1 | Read Write file -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/GetFileAttributesExW/test1/.hidden_file: -------------------------------------------------------------------------------- 1 | Hidden file -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/GetFileAttributesW/test1/.hidden_file: -------------------------------------------------------------------------------- 1 | Hidden file -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/GetFileAttributesW/test1/.hidden_ro_file: -------------------------------------------------------------------------------- 1 | .hidden_ro_file 2 | -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/GetFileAttributesW/test1/no_file: -------------------------------------------------------------------------------- 1 | No attribs file -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/GetFileAttributesW/test1/rw_file: -------------------------------------------------------------------------------- 1 | Read Write file -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/MoveFileA/test1/ExpectedResults.txt: -------------------------------------------------------------------------------- 1 | 30404( -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/MoveFileW/test1/ExpectedResults.txt: -------------------------------------------------------------------------------- 1 | 30404( -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/ReadFile/test1/NonReadableFile.txt: -------------------------------------------------------------------------------- 1 | this is a test -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/SetFileAttributesA/test1/test_file: -------------------------------------------------------------------------------- 1 | Don't delete me. I'm needed. The File. -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/SetFileAttributesA/test2/test_file: -------------------------------------------------------------------------------- 1 | The File. -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/SetFileAttributesA/test4/test_file: -------------------------------------------------------------------------------- 1 | Don't delete me. I'm needed. The File. -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/SetFileAttributesW/test1/test_file: -------------------------------------------------------------------------------- 1 | Don't delete me. I'm needed. The File. -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/SetFileAttributesW/test2/test_file: -------------------------------------------------------------------------------- 1 | The File. -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/SetFileAttributesW/test4/test_file: -------------------------------------------------------------------------------- 1 | Don't delete me. I'm needed. The File. -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tests/palsuite/file_io/WriteFile/test2/Results.txt: -------------------------------------------------------------------------------- 1 | 300444 -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/pal/tools/smarty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/pal/tools/smarty.sh -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/palrt/.gitmirror: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/palrt/.gitmirror -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/palrt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/palrt/CMakeLists.txt -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/palrt/bstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/palrt/bstr.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/palrt/coguid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/palrt/coguid.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/palrt/comem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/palrt/comem.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/palrt/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/palrt/common.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/palrt/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/palrt/convert.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/palrt/decarith.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/palrt/decarith.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/palrt/decconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/palrt/decconv.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/palrt/guid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/palrt/guid.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/palrt/guiddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/palrt/guiddef.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/palrt/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/palrt/path.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/palrt/shlwapip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/palrt/shlwapip.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/palrt/shstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/palrt/shstr.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/palrt/urlpars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/palrt/urlpars.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/palrt/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/palrt/variant.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/sharplang/CoreCLR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/sharplang/CoreCLR.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/sharplang/PInvoke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/sharplang/PInvoke.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/utilcode/ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/utilcode/ex.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/binder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/binder.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/binder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/binder.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/classnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/classnames.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/common.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/comutilnative.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/comutilnative.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/comutilnative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/comutilnative.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/crst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/crst.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/crst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/crst.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/ecalllist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/ecalllist.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/eecontract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/eecontract.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/eehash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/eehash.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/eehash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/eehash.inl -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/excep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/excep.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/excep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/excep.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/exceptmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/exceptmacros.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/fcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/fcall.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/field.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/frames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/frames.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/gc.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/gcenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/gcenv.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/hosting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/hosting.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/metasig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/metasig.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/mscorlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/mscorlib.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/mscorlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/mscorlib.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/namespace.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/nativeoverlapped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/nativeoverlapped.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/object.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/qcall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/qcall.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/qcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/qcall.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/rexcep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/rexcep.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/safehandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/safehandle.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/spinlock.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/stackprobe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/stackprobe.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/syncclean.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/syncclean.hpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/threads.h -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/util.cpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/util.hpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/coreclr/vm/vars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/coreclr/vm/vars.hpp -------------------------------------------------------------------------------- /src/SharpLang.Runtime/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.Runtime/premake4.lua -------------------------------------------------------------------------------- /src/SharpLang.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.sln -------------------------------------------------------------------------------- /src/SharpLang.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/SharpLang.sln.DotSettings -------------------------------------------------------------------------------- /src/linker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/AUTHORS -------------------------------------------------------------------------------- /src/linker/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/ChangeLog -------------------------------------------------------------------------------- /src/linker/Descriptors/Mono.Posix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Descriptors/Mono.Posix.xml -------------------------------------------------------------------------------- /src/linker/Descriptors/System.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Descriptors/System.Core.xml -------------------------------------------------------------------------------- /src/linker/Descriptors/System.Drawing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Descriptors/System.Drawing.xml -------------------------------------------------------------------------------- /src/linker/Descriptors/System.Web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Descriptors/System.Web.xml -------------------------------------------------------------------------------- /src/linker/Descriptors/System.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Descriptors/System.xml -------------------------------------------------------------------------------- /src/linker/Descriptors/mscorlib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Descriptors/mscorlib.xml -------------------------------------------------------------------------------- /src/linker/MIT.X11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/MIT.X11 -------------------------------------------------------------------------------- /src/linker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Makefile -------------------------------------------------------------------------------- /src/linker/Mono.Linker.Steps/BaseStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker.Steps/BaseStep.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker.Steps/BlacklistStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker.Steps/BlacklistStep.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker.Steps/CleanStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker.Steps/CleanStep.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker.Steps/IStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker.Steps/IStep.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker.Steps/LoadI18nAssemblies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker.Steps/LoadI18nAssemblies.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker.Steps/LoadReferencesStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker.Steps/LoadReferencesStep.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker.Steps/MarkStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker.Steps/MarkStep.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker.Steps/OutputStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker.Steps/OutputStep.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker.Steps/RegenerateGuidStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker.Steps/RegenerateGuidStep.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker.Steps/ResolveFromXApiStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker.Steps/ResolveFromXApiStep.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker.Steps/ResolveFromXmlStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker.Steps/ResolveFromXmlStep.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker.Steps/ResolveStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker.Steps/ResolveStep.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker.Steps/SweepStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker.Steps/SweepStep.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker.Steps/TypeMapStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker.Steps/TypeMapStep.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker.csproj -------------------------------------------------------------------------------- /src/linker/Mono.Linker/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker/Annotations.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker/AssemblyAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker/AssemblyAction.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker/AssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker/AssemblyResolver.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker/Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker/Driver.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker/I18nAssemblies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker/I18nAssemblies.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker/IXApiVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker/IXApiVisitor.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker/LinkContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker/LinkContext.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker/MethodAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker/MethodAction.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker/Pipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker/Pipeline.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker/TypePreserve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker/TypePreserve.cs -------------------------------------------------------------------------------- /src/linker/Mono.Linker/XApiReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/Mono.Linker/XApiReader.cs -------------------------------------------------------------------------------- /src/linker/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/README -------------------------------------------------------------------------------- /src/linker/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/configure -------------------------------------------------------------------------------- /src/linker/monolinker.exe.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/monolinker.exe.sources -------------------------------------------------------------------------------- /src/linker/monolinker.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/monolinker.in -------------------------------------------------------------------------------- /src/linker/profiler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/profiler/Makefile -------------------------------------------------------------------------------- /src/linker/profiler/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/profiler/link.c -------------------------------------------------------------------------------- /src/linker/standalone.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/linker/standalone.make -------------------------------------------------------------------------------- /src/mcs/tools/linker/Descriptors/mscorlib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mcs/tools/linker/Descriptors/mscorlib.xml -------------------------------------------------------------------------------- /src/mscorlib/.gitmirrorall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/.gitmirrorall -------------------------------------------------------------------------------- /src/mscorlib/Common/PinnableBufferCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/Common/PinnableBufferCache.cs -------------------------------------------------------------------------------- /src/mscorlib/Common/Preprocessed/AssemblyRefs.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/Common/Preprocessed/AssemblyRefs.g.cs -------------------------------------------------------------------------------- /src/mscorlib/GenerateCompilerResponseFile.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/GenerateCompilerResponseFile.targets -------------------------------------------------------------------------------- /src/mscorlib/GenerateSplitStringResources.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/GenerateSplitStringResources.targets -------------------------------------------------------------------------------- /src/mscorlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/LICENSE -------------------------------------------------------------------------------- /src/mscorlib/Tools/BclRewriter/BclRewriter.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/Tools/BclRewriter/BclRewriter.targets -------------------------------------------------------------------------------- /src/mscorlib/Tools/PostProcessingTools.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/Tools/PostProcessingTools.targets -------------------------------------------------------------------------------- /src/mscorlib/Tools/Signing/PublicTestKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/Tools/Signing/PublicTestKey.snk -------------------------------------------------------------------------------- /src/mscorlib/Tools/Signing/TestKeyPair.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/Tools/Signing/TestKeyPair.snk -------------------------------------------------------------------------------- /src/mscorlib/Tools/Signing/ecma.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/Tools/Signing/ecma.pub -------------------------------------------------------------------------------- /src/mscorlib/Tools/Versioning/NativeVersion.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/Tools/Versioning/NativeVersion.rc -------------------------------------------------------------------------------- /src/mscorlib/clr.coreclr.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/clr.coreclr.props -------------------------------------------------------------------------------- /src/mscorlib/clr.defines.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/clr.defines.targets -------------------------------------------------------------------------------- /src/mscorlib/corefx/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/corefx/SR.cs -------------------------------------------------------------------------------- /src/mscorlib/dir.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/dir.props -------------------------------------------------------------------------------- /src/mscorlib/model.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/model.xml -------------------------------------------------------------------------------- /src/mscorlib/mscorlib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/mscorlib.csproj -------------------------------------------------------------------------------- /src/mscorlib/mscorlib.shared.sources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/mscorlib.shared.sources.props -------------------------------------------------------------------------------- /src/mscorlib/src/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/mscorlib/src/Microsoft/Win32/OAVariantLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/Microsoft/Win32/OAVariantLib.cs -------------------------------------------------------------------------------- /src/mscorlib/src/Microsoft/Win32/Registry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/Microsoft/Win32/Registry.cs -------------------------------------------------------------------------------- /src/mscorlib/src/Microsoft/Win32/RegistryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/Microsoft/Win32/RegistryKey.cs -------------------------------------------------------------------------------- /src/mscorlib/src/Microsoft/Win32/RegistryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/Microsoft/Win32/RegistryOptions.cs -------------------------------------------------------------------------------- /src/mscorlib/src/Microsoft/Win32/RegistryView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/Microsoft/Win32/RegistryView.cs -------------------------------------------------------------------------------- /src/mscorlib/src/Microsoft/Win32/Win32Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/Microsoft/Win32/Win32Native.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/AccessViolationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/AccessViolationException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Action.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Activator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Activator.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/AggregateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/AggregateException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/AppContext/AppContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/AppContext/AppContext.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/AppDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/AppDomain.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/AppDomainAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/AppDomainAttributes.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/AppDomainManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/AppDomainManager.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/AppDomainSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/AppDomainSetup.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ApplicationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ApplicationException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ApplicationId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ApplicationId.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ArgIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ArgIterator.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ArgumentException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ArgumentException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ArgumentNullException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ArgumentNullException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ArithmeticException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ArithmeticException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Array.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ArraySegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ArraySegment.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/AsyncCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/AsyncCallback.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Attribute.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/AttributeTargets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/AttributeTargets.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/AttributeUsageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/AttributeUsageAttribute.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/BCLDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/BCLDebug.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/BadImageFormatException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/BadImageFormatException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/BitConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/BitConverter.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Boolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Boolean.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Buffer.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Byte.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/CLRConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/CLRConfig.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/CLSCompliantAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/CLSCompliantAttribute.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/CfgParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/CfgParser.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Char.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Char.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/CharEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/CharEnumerator.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Collections/ArrayList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Collections/ArrayList.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Collections/BitArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Collections/BitArray.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Collections/Comparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Collections/Comparer.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Collections/Generic/List.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Collections/Generic/List.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Collections/Hashtable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Collections/Hashtable.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Collections/ICollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Collections/ICollection.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Collections/IComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Collections/IComparer.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Collections/IDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Collections/IDictionary.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Collections/IEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Collections/IEnumerable.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Collections/IEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Collections/IEnumerator.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Collections/IList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Collections/IList.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Collections/SortedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Collections/SortedList.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Collections/Stack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Collections/Stack.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/CompatibilitySwitches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/CompatibilitySwitches.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Console.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Console.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ConsoleCancelEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ConsoleCancelEventArgs.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ConsoleColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ConsoleColor.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ConsoleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ConsoleKey.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ConsoleKeyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ConsoleKeyInfo.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ConsoleModifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ConsoleModifiers.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ConsoleSpecialKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ConsoleSpecialKey.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ContextBoundObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ContextBoundObject.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ContextMarshalException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ContextMarshalException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ContextStaticAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ContextStaticAttribute.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Convert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Convert.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Currency.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/DBNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/DBNull.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/DataMisalignedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/DataMisalignedException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/DateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/DateTime.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/DateTimeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/DateTimeKind.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/DateTimeOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/DateTimeOffset.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/DayOfWeek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/DayOfWeek.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Decimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Decimal.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/DefaultBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/DefaultBinder.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Delegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Delegate.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Diagnostics/Assert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Diagnostics/Assert.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Diagnostics/AssertFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Diagnostics/AssertFilter.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Diagnostics/Debugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Diagnostics/Debugger.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Diagnostics/LogSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Diagnostics/LogSwitch.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Diagnostics/Stackframe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Diagnostics/Stackframe.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Diagnostics/Stacktrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Diagnostics/Stacktrace.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Diagnostics/log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Diagnostics/log.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/DivideByZeroException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/DivideByZeroException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/DllNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/DllNotFoundException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Double.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Empty.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Enum.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Environment.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/EventArgs.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/EventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/EventHandler.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Exception.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ExecutionEngineException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ExecutionEngineException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/FieldAccessException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/FieldAccessException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/FlagsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/FlagsAttribute.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/FormatException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/FormatException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/FormattableString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/FormattableString.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/GC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/GC.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Globalization/Calendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Globalization/Calendar.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Globalization/IdnMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Globalization/IdnMapping.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Globalization/RegionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Globalization/RegionInfo.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Globalization/SortKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Globalization/SortKey.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Globalization/StringInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Globalization/StringInfo.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Globalization/TextInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Globalization/TextInfo.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Guid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Guid.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IAppDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IAppDomain.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IAppDomainPauseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IAppDomainPauseManager.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IAppDomainSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IAppDomainSetup.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IAsyncResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IAsyncResult.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ICloneable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ICloneable.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IComparable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IComparable.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IConvertible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IConvertible.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ICustomFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ICustomFormatter.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IDisposable.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IEquatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IEquatable.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IFormatProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IFormatProvider.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IFormattable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IFormattable.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/BinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/BinaryReader.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/BinaryWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/BinaryWriter.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/BufferedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/BufferedStream.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/Directory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/Directory.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/DirectoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/DirectoryInfo.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/DriveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/DriveInfo.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/EndOfStreamException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/EndOfStreamException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/File.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/FileAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/FileAccess.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/FileAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/FileAttributes.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/FileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/FileInfo.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/FileLoadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/FileLoadException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/FileMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/FileMode.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/FileNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/FileNotFoundException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/FileOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/FileOptions.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/FileSecurityState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/FileSecurityState.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/FileShare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/FileShare.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/FileStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/FileStream.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/FileSystemEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/FileSystemEnumerable.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/FileSystemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/FileSystemInfo.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/IOException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/IOException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/MemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/MemoryStream.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/Path.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/PathHelper.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/PathTooLongException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/PathTooLongException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/ReadLinesIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/ReadLinesIterator.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/SearchOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/SearchOption.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/SeekOrigin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/SeekOrigin.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/Stream.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/StreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/StreamReader.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/StreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/StreamWriter.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/StringReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/StringReader.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/StringWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/StringWriter.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/TextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/TextReader.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/TextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/TextWriter.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/UnmanagedMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/UnmanagedMemoryStream.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/__ConsoleStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/__ConsoleStream.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/__Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/__Error.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/__HResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IO/__HResults.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IObservable.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IObserver.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IProgress.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IServiceObjectProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IServiceObjectProvider.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IndexOutOfRangeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IndexOutOfRangeException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Int16.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Int32.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Int64.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/IntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/IntPtr.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Internal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Internal.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/InvalidCastException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/InvalidCastException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/InvalidProgramException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/InvalidProgramException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/InvalidTimeZoneException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/InvalidTimeZoneException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Lazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Lazy.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/MarshalByRefObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/MarshalByRefObject.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Math.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/MemberAccessException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/MemberAccessException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/MethodAccessException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/MethodAccessException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/MidpointRounding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/MidpointRounding.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/MissingFieldException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/MissingFieldException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/MissingMemberException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/MissingMemberException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/MissingMethodException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/MissingMethodException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/MulticastDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/MulticastDelegate.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/NonSerializedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/NonSerializedAttribute.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/NotFiniteNumberException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/NotFiniteNumberException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/NotImplementedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/NotImplementedException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/NotSupportedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/NotSupportedException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/NullReferenceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/NullReferenceException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Nullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Nullable.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Number.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Number.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Object.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ObjectDisposedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ObjectDisposedException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ObsoleteAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ObsoleteAttribute.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/OleAutBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/OleAutBinder.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/OperatingSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/OperatingSystem.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/OutOfMemoryException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/OutOfMemoryException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/OverflowException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/OverflowException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ParamArrayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ParamArrayAttribute.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ParamsArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ParamsArray.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ParseNumbers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ParseNumbers.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/PlatformID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/PlatformID.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Platforms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Platforms.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Progress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Progress.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Random.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Random.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/RankException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/RankException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/Assembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/Assembly.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/AssemblyName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/AssemblyName.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/Associates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/Associates.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/Binder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/Binder.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/BindingFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/BindingFlags.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/ComInterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/ComInterfaces.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/Emit/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/Emit/Label.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/Emit/OpCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/Emit/OpCodes.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/Emit/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/Emit/Opcode.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/EventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/EventInfo.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/FieldInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/FieldInfo.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/IReflect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/IReflect.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/MdConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/MdConstant.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/MdImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/MdImport.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/MemberFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/MemberFilter.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/MemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/MemberInfo.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/MemberTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/MemberTypes.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/MethodBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/MethodBase.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/MethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/MethodBody.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/MethodInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/MethodInfo.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/Missing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/Missing.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/Module.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/ParameterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/ParameterInfo.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/Pointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/Pointer.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/PropertyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/PropertyInfo.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/TypeDelegator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/TypeDelegator.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/TypeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/TypeFilter.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/TypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/TypeInfo.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Reflection/__Filters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Reflection/__Filters.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ResId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ResId.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Resources/ResourceReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Resources/ResourceReader.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Resources/ResourceSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Resources/ResourceSet.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Resources/__HResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Resources/__HResults.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/RtType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/RtType.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Runtime/GcSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Runtime/GcSettings.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Runtime/MemoryFailPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Runtime/MemoryFailPoint.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/RuntimeArgumentHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/RuntimeArgumentHandle.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/RuntimeHandles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/RuntimeHandles.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/SByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/SByte.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/Attributes.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/IPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/IPermission.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/IStackWalk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/IStackWalk.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/PermissionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/PermissionSet.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/PermissionToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/PermissionToken.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/Policy/Evidence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/Policy/Evidence.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/Policy/Site.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/Policy/Site.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/Policy/URL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/Policy/URL.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/Policy/Zone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/Policy/Zone.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/SecurityContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/SecurityContext.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/SecurityElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/SecurityElement.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/SecurityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/SecurityManager.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/SecurityRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/SecurityRuntime.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/SecurityState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/SecurityState.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/SecurityZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/SecurityZone.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/Util/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/Util/Config.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/Util/Hex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/Util/Hex.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/Util/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/Util/Parser.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/Util/Tokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/Util/Tokenizer.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/Util/URLString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/Util/URLString.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/Util/XMLUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/Util/XMLUtil.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/Util/sitestring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/Util/sitestring.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Security/securestring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Security/securestring.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/SerializableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/SerializableAttribute.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/SharedStatics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/SharedStatics.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Single.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/StackOverflowException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/StackOverflowException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/String.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/StringComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/StringComparer.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/StringComparison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/StringComparison.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/StringFreezingAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/StringFreezingAttribute.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/StubHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/StubHelpers.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/SystemException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/SystemException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/ASCIIEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/ASCIIEncoding.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/CodePageEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/CodePageEncoding.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/Decoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/Decoder.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/DecoderFallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/DecoderFallback.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/DecoderNLS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/DecoderNLS.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/EUCJPEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/EUCJPEncoding.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/Encoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/Encoder.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/EncoderFallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/EncoderFallback.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/EncoderNLS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/EncoderNLS.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/Encoding.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/EncodingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/EncodingInfo.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/EncodingNLS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/EncodingNLS.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/EncodingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/EncodingProvider.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/GB18030Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/GB18030Encoding.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/ISCIIEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/ISCIIEncoding.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/ISO2022Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/ISO2022Encoding.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/Latin1Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/Latin1Encoding.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/Normalization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/Normalization.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/StringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/StringBuilder.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/StringBuilderCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/StringBuilderCache.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/SurrogateEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/SurrogateEncoder.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/UTF32Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/UTF32Encoding.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/UTF7Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/UTF7Encoding.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/UTF8Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/UTF8Encoding.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/UnicodeEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Text/UnicodeEncoding.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ThreadAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ThreadAttributes.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ThreadStaticAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ThreadStaticAttribute.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/ApartmentState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/ApartmentState.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/AsyncLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/AsyncLocal.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/AutoResetEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/AutoResetEvent.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/CountdownEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/CountdownEvent.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/EventResetMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/EventResetMode.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/IObjectHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/IObjectHandle.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/Interlocked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/Interlocked.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/LockCookie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/LockCookie.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/Monitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/Monitor.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/Mutex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/Mutex.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/Overlapped.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/Overlapped.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/SpinLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/SpinLock.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/SpinWait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/SpinWait.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/Tasks/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/Tasks/Task.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/Tasks/future.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/Tasks/future.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/Thread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/Thread.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/ThreadLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/ThreadLocal.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/ThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/ThreadPool.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/ThreadStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/ThreadStart.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/ThreadState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/ThreadState.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/Timeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/Timeout.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/Timer.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/Volatile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/Volatile.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/WaitHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Threading/WaitHandle.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ThrowHelper.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/TimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/TimeSpan.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/TimeZoneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/TimeZoneInfo.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/TimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/TimeoutException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Tuple.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Type.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/TypeAccessException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/TypeAccessException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/TypeCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/TypeCode.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/TypeLoadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/TypeLoadException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/TypeNameParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/TypeNameParser.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/TypeUnloadedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/TypeUnloadedException.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/TypedReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/TypedReference.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/UInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/UInt16.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/UInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/UInt32.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/UInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/UInt64.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/UIntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/UIntPtr.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/UnSafeCharBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/UnSafeCharBuffer.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/ValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/ValueType.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Variant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Variant.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Version.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Void.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/Void.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/WeakReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/WeakReference.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/WeakReferenceOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/WeakReferenceOfT.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/_LocalDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/_LocalDataStore.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/_LocalDataStoreMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/_LocalDataStoreMgr.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/__ComObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/__ComObject.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/__Filters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/__Filters.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/__HResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/__HResults.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/cominterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/cominterfaces.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/mda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/System/mda.cs -------------------------------------------------------------------------------- /src/mscorlib/src/mscorlib.Friends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/mscorlib.Friends.cs -------------------------------------------------------------------------------- /src/mscorlib/src/mscorlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen2/SharpLang/HEAD/src/mscorlib/src/mscorlib.txt --------------------------------------------------------------------------------