CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: cmajor28

Search: Search took 0.02 seconds.

  1. Thread: KS filters

    by cmajor28
    Replies
    0
    Views
    664

    KS filters

    I'm creating an audio driver and I have a few questions. I can enumerate Audio Endpoint devices with SetupAPI and MMDeviceAPI however when I try to associate I Kernel Streaming filter with a specific...
  2. Replies
    5
    Views
    1,963

    Re: SetupAPI Issue

    Yes, I've done a lot of work with setup API in the past too.
  3. Replies
    5
    Views
    1,963

    Re: SetupAPI Issue

    It can return INVALID_HANDLE_VALUE but it is not. It's iterating through the loop but SetDiGetDeviceProperty always returns false and the error is ERROR_NOT_FOUND. So apparently no devices on my PC...
  4. Replies
    5
    Views
    1,963

    SetupAPI Issue

    For some reason when I call this function below, nothing prints out. Why is that?



    int PrintExclusive() {

    DWORD dwIndex = 0;
    DWORD dwCount = 0;
    DWORD dwPropType;
    DWORD dwPropValue;
  5. Replies
    0
    Views
    737

    Windows Kernel Streaming

    I'm writing an audio driver (similar to ASIO4ALL) that supports kernel streaming and I can't seem to find any solid documentation. The Windows documentation is HORRIBLE for it. I just need a general...
  6. Replies
    2
    Views
    2,719

    Re: Enumerate Audio Devices

    The info gets put into the buffer correctly but it does match what is in the Sound section of the control panel. For example: instead of saying "Realtek" for device manufacturer it says "Microsoft"....
  7. Replies
    2
    Views
    2,719

    Enumerate Audio Devices

    I'm trying to get some information from audio devices however whenever I run my code below, the device description and manufacturer are wrong. What am I doing wrong?



    #include <stdio.h>...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured