Search:

Type: Posts; User: Geolingo

Page 1 of 11 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    12
    Views
    3,106

    My code never specifys unicode, However: char...

    My code never specifys unicode, However:

    char TempPathToOurFile[_MAX_PATH];
    GetModuleFileName(GetModuleHandle(NULL),TempPathToOurFile,_MAX_PATH);
    Results in:
    error C2664: 'GetModuleFileNameW' :...
  2. Replies
    12
    Views
    3,106

    "TempPathToOurFile" is not a const char *, its a...

    "TempPathToOurFile" is not a const char *, its a wide character array, which cant be directly assigned to a string. Thus each character has to be cast individually and concatinated.

    The real...
  3. Replies
    12
    Views
    3,106

    thankyou

    Im using the following code and it seems to work great.


    std::string PathToOurFile = "";
    LPTSTR TempPathToOurFile = new TCHAR[_MAX_PATH];...
  4. Replies
    12
    Views
    3,106

    The applications referencing it arent writen in...

    The applications referencing it arent writen in C++.
  5. Replies
    12
    Views
    3,106

    Who Called My DLL? And Component Security.

    OK, I have a library, mylib.dll. It can be loaded from various applications. What i would like to know is when it is loaded, and some function is called, how do i find the path to the executable that...
  6. Replies
    0
    Views
    1,316

    REQ: Change Audio Input Device?

    Hey guys, im back. After trying long and hard to find a way to mute the microphone input, i have somewhat given up (after discovering that there was no approved way to mute it, and setting the volume...
  7. Most effective AV applications use an...

    Most effective AV applications use an intermediate filter driver in the kernel. This has nothing to do with the windows API itself. The low level filter permits far greater power than a high level OS...
  8. Replies
    7
    Views
    6,742

    Yes i have changed SRC_MIC to DST_WAVEIN, doesnt...

    Yes i have changed SRC_MIC to DST_WAVEIN, doesnt mute the mic at all.

    I cant seem to get a MUTE control on the DST_WAVEIN. I have tried it on both your code and mine now. There has to be some...
  9. Replies
    7
    Views
    6,742

    I guess i should clarify where im at right now: I...

    I guess i should clarify where im at right now: I cant get a working MIXERCONTROL_CONTROLTYPE_MUTE of my MIXERLINE_COMPONENTTYPE_DST_WAVEIN. I dont know how to mute that componenttype. I think im...
  10. Replies
    7
    Views
    6,742

    Its my understanding that SRC_MICROPHONE will...

    Its my understanding that SRC_MICROPHONE will only mute/unmute the ECHO of whats entered. Correct me if im wrong here. Im trying to shut off the microphones input to the system.
  11. Replies
    7
    Views
    6,742

    Im trying to edit some existing code, however im...

    Im trying to edit some existing code, however im having troubles finding the right control.

    Controls like: MIXERLINE_COMPONENTTYPE_DST_WAVEIN and MIXERLINE_COMPONENTTYPE_DST_MICROPHONE come back ...
  12. Replies
    7
    Views
    6,742

    How to mute microphone in mixer?

    Hey guys,

    Im looking for a quick way to send a message to the windows audio mixer instructing it to either mute or unmute the microphone (This is for a push-to-talk button)

    Thanks for your...
  13. Replies
    1
    Views
    1,064

    Network Services Architecture Question.

    My question is hypothetical: Your writing a multi-client service application, what architecture for the sockets would you choose (and why)?

    A Blocking approach where each socket is accepted and...
  14. Replies
    2
    Views
    9,213

    Non-Blocking System()-like function

    I need a system() call that executes another packeged executable file, WITHOUT waiting for it to finish before continuing on. I would PERFER a portable solution, as my software currently compiles...
  15. Replies
    3
    Views
    1,309

    That only lists the individual projects settings,...

    That only lists the individual projects settings, NOT the DEFAULT TEMPLATE that the project was GENERATED from. My goal here is to make it so i DONT have to go in and manually set the settings 30...
  16. Replies
    3
    Views
    1,309

    Visual Studio Settings Help

    OK, so I was recently forced to upgrade to visual studio 7 (yuck) and i hate the way it does things. One of my biggest problems is its absolutely stupid default project settings, and im wondering HOW...
  17. Replies
    7
    Views
    7,269

    Different people learn in different ways. Some...

    Different people learn in different ways. Some people read books to learn how to build bridges, others build bridges to learn how to build bridges.

    I learn far better looking at working code and...
  18. Replies
    7
    Views
    7,269

    I watched the animation, and im more confused...

    I watched the animation, and im more confused than ever. This is why i need code and not theory. Id really like to see code in a language i knew without the use of a bunch of structures that are in...
  19. Replies
    7
    Views
    7,269

    Im afraid i dont know java, and have had alot of...

    Im afraid i dont know java, and have had alot of trouble in the past extrapolating information from applications writen in it. There are arbitrary objects, like Graph. What is a graph? how is it...
  20. Replies
    7
    Views
    7,269

    Path Finding Using Adjacency List.

    Background: Im not trying to impliment any particular algorithm, but id like to do a little pathfinding. Im storing several things in several places while testing different ideas. Each node object...
  21. Replies
    7
    Views
    5,595

    Thanks alot codeplug, you were absolutely right....

    Thanks alot codeplug, you were absolutely right. Sticking pthread_join in fixed the bulk of the problem instantly. (There is still a 12 byte memory leak hiding somewhere, but its almost too small to...
  22. Replies
    7
    Views
    5,595

    Detached i believe, i just use pthread_create(...

    Detached i believe, i just use pthread_create( &thread, 0, &exeWrapPthreads, this); So im not exactly sure.

    I never join the threads, or set any attributes. Are there some necessary things i...
  23. Replies
    7
    Views
    5,595

    Sorry for the late reply, have been busy. Im not...

    Sorry for the late reply, have been busy.
    Im not sure about the implimentation, i simply use G++ with the -lpthread option. Im usually working on FreeBSD, however I havent seen any differences in...
  24. Replies
    7
    Views
    5,595

    PThread Handles Not Closing?

    Is there a CloseHandle For PThreads?

    Im using somewhat portable code, and while watching my code execute via process explorer, im noticing that the software is generating huge numbers of thread...
  25. Replies
    0
    Views
    4,594

    [2k3] PPPOE Server on Windows 2003 Srv EE?

    OK, For testing perposes, I would like to configure a windows server 2003 enterprise edition box to work as a PPPOE SERVER / CONCENTRATOR. (Im not interested in setting it as a client, as im not...
Results 1 to 25 of 266
Page 1 of 11 1 2 3 4