Search:

Type: Posts; User: coldfusion244

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    922

    why even have the output of an empty string? Just...

    why even have the output of an empty string? Just put


    cout <<argv[1]<<endl;


    As to reasons why it would crash, are you passing the correct variables to the program? Wouldn't it be an...
  2. Replies
    4
    Views
    1,890

    The commands depend on the LCD. Basically what...

    The commands depend on the LCD. Basically what you are going to want to do is set up the command register first and then load the data register. For example if PortA was at 0x392 then you could do...
  3. Replies
    1
    Views
    2,522

    Low Level Drive Access?

    What approach would I take to get low level access to drives? Primary I want to start on optical drives, I was thinking of going in the direction of making ISO files from a CD. Then if I can get that...
  4. Ok, I figured out the following code form the...

    Ok, I figured out the following code form the references you posted.



    unsigned int NumDevs = 0;
    WAVEOUTCAPS wResult;
    char cGet = 0;

    NumDevs = waveOutGetNumDevs();
  5. I didn't want it to be, but it can. I'm not...

    I didn't want it to be, but it can. I'm not talking about using SndPlaySound or anything like that. I am wanting to know how to access sound devices for raw audio output.
  6. Sounds and Audio Decoding/ Drive Access

    I have not been able to find a resource for sending raw audio data to a sound device. I figure that the code would have to flow like this....

    Enumerate Sound Devices
    Connect or Talk to Device ...
  7. Replies
    8
    Views
    2,551

    Wouldn't you need to test the input for that type...

    Wouldn't you need to test the input for that type of stuff? Do some type of signal processing.... Or are you saying you already have a library to do that?
  8. Replies
    10
    Views
    9,596

    Thank you for your help Ken. May I ask, are there...

    Thank you for your help Ken. May I ask, are there any books that you may own (or have perused) that have excellent subject matter for C++? Maybe you know of a series, i.e. Beginner, intermediate,...
  9. Replies
    10
    Views
    9,596

    Ok, so then the EnumWindows procedure is now...

    Ok, so then the EnumWindows procedure is now going to call my EnumWindowsProc procedure and pass it the hWnd and LPARAM, correct? So I should put my code to get the classname and etc inside...
  10. Replies
    10
    Views
    9,596

    anony, wow, that was a great explaination, i'm...

    anony, wow, that was a great explaination, i'm still figuring it out :p Maybe this isn't a good project to start out to do for someone whom just has the basics down.. Since I don't know what a...
  11. Replies
    1
    Views
    857

    Mods: Why was my post deleted?

    I posted earlier today, and had a couple replies and now it's deleted... Any reason why?
  12. Replies
    10
    Views
    9,596

    I had commented it out because I wanted to make...

    I had commented it out because I wanted to make sure that's where the error was coming from. As for returning false, I am not sure what I have to do, but it doesn't compile yet, so i'm taking it one...
  13. Replies
    10
    Views
    9,596

    EnumWindowsProc

    I am attempting to find all open windows (using a console project) and output their hWnd, class, and captions in the console. However I attempted this and for some reason it gives me a compiler error...
  14. Replies
    3
    Views
    955

    ok, I was not aware of that! arg! You are...

    ok, I was not aware of that! arg! You are correct, it increments a number passed to it... which is just a test, since I want to get it working before i write a few hundred lines of ASM.

    Ok, is...
  15. Replies
    3
    Views
    955

    Assembly and C++

    Hi guys, I have asked this question on other forums and no one seems to know the answer...

    I wrote a dll in assembly to test the functionallity between ASM dll's and C++. I am however lost. After...
Results 1 to 15 of 15