Ciprian Fusaciprianf.hashnode.dev·Feb 13, 2024Win32 API programming with C - HTTP Server APIIn the realm of network programming on Windows, the Win32 HTTP Server API offers a robust, low-level foundation for handling HTTP requests directly within a C application. This API, part of the Windows HTTP Services (WinHTTP), provides developers wit...Discuss·310 readsWin32 APIwin32 api
Ciprian Fusaciprianf.hashnode.dev·Feb 12, 2024Win32 API programming with C - Getting started with Direct3DIntroduction For the purpose of this article we will focus on Direct3D version 11 as Direct3D 12 represents a significant departure from the Direct3D 11 programming model. Direct3D 11, a component of Microsoft's DirectX API, serves as a robust framew...Discuss·195 readsWin32 APIdirect3d
Ciprian Fusaciprianf.hashnode.dev·Feb 9, 2024Win32 API programming with C - Working with the databaseThe Microsoft Open Database Connectivity (ODBC) interface is a C programming language interface that makes it possible for applications to access data from a variety of database management systems (DBMSs). ODBC is a low-level, high-performance interf...Discuss·130 readsWin32 APIwin32 api
Ciprian Fusaciprianf.hashnode.dev·Feb 8, 2024Win32 API programming with C - Using the file systemWhen we looked at common controls library we added an Edit control. Let's say we want to save the text that we write to a file on disk, for this we need to use the File System API. First, we need a method to open the File Save dialog: void OpenFileS...Discuss·185 readsWin32 APIwin32 api