Skip to content
View WerFlux's full-sized avatar
🏠
School
🏠
School
Block or Report

Block or report WerFlux

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Store audio devices to array (or std... Store audio devices to array (or std::vector)
    1
    // Tested on Windows 10 Version 22H2 (OS Build 19045.4170)
    2
    // Compiled on Windows 10 with MSVC v143 and Windows 10 SDK (10.0.20348.0)
    3
    
                  
    4
    #include <Windows.h>
    5
    #include <Mmdeviceapi.h>
  2. Capture webcam device with Media Fou... Capture webcam device with Media Foundation API
    1
    //#define COBJMACROS // C++ doesnt require COBJMACROS, only C use this
    2
    #define WIN32_LEAN_AND_MEAN
    3
    #include <windows.h>
    4
    #include <mfapi.h>
    5
    #include <mfidl.h>
  3. Hook GLFW window procedure and creat... Hook GLFW window procedure and create menus.
    1
    #include "external/glfw/glfw3.h"
    2
    #define GLFW_EXPOSE_NATIVE_WIN32
    3
    #include "external/glfw/glfw3native.h"
    4
    
                  
    5
    #define MENU_EXIT 1