Winsdk-10 Alternatives

Similar projects and alternatives to winsdk-10

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better winsdk-10 alternative or higher similarity.

winsdk-10 reviews and mentions

Posts with mentions or reviews of winsdk-10. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-06-07.
  • Welcome to the Apple M1 Windows Project
    2 projects | news.ycombinator.com | 7 Jun 2022
    > Is this something you have to sign an NDA with Microsoft to get access to the headers and docs for it? Or will I find the headers hidden away in the WDK somewhere?

    Turns out the header file is included in the Windows 10 SDK, as km/nthalext.h

    Not the very latest version, but someone posted it on GitHub here: https://github.com/tpn/winsdk-10/blob/master/Include/10.0.16...

    (You can download the multi-gigabyte Windows 10 SDK to get a more recent one.)

    Still doesn't seem to be any public documentation. The header includes very detailed comments, but (as you'd expect for header file comments) they concentrate on the nitty-gritty and omit the big picture.

    Searching "nthalext.h" on GitHub finds (what appears to be) source code for a number of HAL extensions, so at least there is some (third party) sample code to look at.

  • Wrapping my head around COM in Rust
    5 projects | /r/rust | 30 Dec 2021
    I'm looking at windows-rs and finding what I think is a good relevant and representative example of how EventSys is implemented, which has several IDispatch interfaces. I think this gives me a good starting point, thanks for pointing me in this direction.
  • How I cut GTA Online loading times by 70%
    3 projects | news.ycombinator.com | 28 Feb 2021
    I think that the author hasn't checked them all. Even this isn't checking them all.

    The MUSL C library' sscanf() does not do this, but does call memchr() on limited substrings of the input string as it refills its input buffer, so it's not entirely free of this behaviour.

    * https://git.musl-libc.org/cgit/musl/tree/src/stdio/vsscanf.c

    The sscanf() in Microsoft's C library does this because it all passes through a __stdio_common_vsscanf() function which uses length-counted rather than NUL-terminated strings internally.

    * https://github.com/tpn/winsdk-10/blob/master/Include/10.0.16...

    * https://github.com/huangqinjin/ucrt/blob/master/inc/corecrt_...

    The GNU C library does something similar, using a FILE structure alongside a special "operations" table, with a memchr() in the initialization.

    * https://github.com/bminor/glibc/blob/master/libio/strops.c#L...

    * https://github.com/bminor/glibc/blob/master/libio/strfile.h#...

    The FreeBSD C library does not use a separate "operations" table.

    * https://github.com/freebsd/freebsd-src/blob/main/lib/libc/st...

    A glib summary is that sscanf() in these implementations has to set up state on every call that fscanf() has the luxury of keeping around over multiple calls in the FILE structure. They're setting up special nonce FILE objects for each sscanf() call, and that involves finding out how long the input string is every time.

    It is food for thought. How much could life be improved if these implementations exported the way to set up these nonce FILE structures from a string, and callers used fscanf() instead of sscanf()? How many applications are scanning long strings with lots of calls to sscanf()?

  • A note from our sponsor - InfluxDB
    www.influxdata.com | 7 May 2024
    Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality. Learn more →

Stats

Basic winsdk-10 repo stats
3
211
0.0
about 6 years ago

The primary programming language of winsdk-10 is C++.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com