Windows: Prefer the Native API over Win32
codeberg.org
Windows: Prefer the Native API over Win32
1–10 of 99 posts
Re: Windows: Prefer the Native API over Win32
#2Re: Windows: Prefer the Native API over Win32
#3For people not familiar with Windows development, another name for the NT native API is "the API that pretty much every document on Windows programming tells you not to use". It's like coding to the Linux syscall interface instead of libc.
Re: Windows: Prefer the Native API over Win32
#4Re: Windows: Prefer the Native API over Win32
#5For people not familiar with Windows development, another name for the NT native API is "the API that pretty much every document on Windows programming tells you not to use". It's like coding to the Linux syscall interface instead of libc.
Yeah, I know go has had issues because they subvert libc themselves in similar fashion. I wonder how this will turn out.
Re: Windows: Prefer the Native API over Win32
#6For people not familiar with Windows development, another name for the NT native API is "the API that pretty much every document on Windows programming tells you not to use". It's like coding to the Linux syscall interface instead of libc.
Yeah, I know go has had issues because they subvert libc themselves in similar fashion. I wonder how this will turn out.
Re: Windows: Prefer the Native API over Win32
#7Re: Windows: Prefer the Native API over Win32
#8For people not familiar with Windows development, another name for the NT native API is "the API that pretty much every document on Windows programming tells you not to use". It's like coding to the Linux syscall interface instead of libc.
Re: Windows: Prefer the Native API over Win32
#9For people not familiar with Windows development, another name for the NT native API is "the API that pretty much every document on Windows programming tells you not to use". It's like coding to the Linux syscall interface instead of libc.
Considering the level of the API. But it is total opposite comparing a bit deeper. Linux has a famous rule "WE DO NOT BREAK USERSPACE!" e.g. [1].
Re: Windows: Prefer the Native API over Win32
#10For people not familiar with Windows development, another name for the NT native API is "the API that pretty much every document on Windows programming tells you not to use". It's like coding to the Linux syscall interface instead of libc.
The right thing to do? I don't see why I would want to use libc.