Jump to content

OldCoder

Active Members
  • Posts

    72
  • Joined

  • Last visited

Everything posted by OldCoder

  1. Exactly. I had thought of that as well, though they say an older version could be used on the 8xxx series, I have yet to find it. Even if I did find it, this would be less then ideal since it is a software solution, which nVidia even admits is too slow for graphic intensive programs, like games. At this point I will probably go with the yoke flipping, but if anyone has another solution, I am all ears. Thanks again.
  2. For reversing video...I've never seen it before. Most modern video cards allow for rotation for such purposes as tablets so you could rotate 90° so the text can be displayed like a book, not in wide screen. On the other hand, if you know of any video cards with such abilities, I am more then eager to hear about them. A new video card would be an expense I wouldn't mind. Thanks.
  3. I had thought of that, but the space available is limited. As "Blue_Drache" had figured out, I am creating an old style, stand up video arcade game for my kids. I am painting the inside black and placing a large mirror inside to reflect the video output. The fastest solution would be best, since the games may require most of the CPU/GPUs processing cycles. The video card I am using is in my old P4 computer; a GForce 8400GS. It's not the greatest card in the west, but for the old P4, it's rockin'. I didn't want to buy a bunch of new equipment just for this project, which is more an experiment then a project. I've looked into yoke flipping, (going inside my old CRT and reversing the horizontal feeds to the yoke), and may go this way, but I was hoping for something as simple as a new or modded video driver. Thanks everyone for your responses, and BTW "BrewManNH", I just want to reverse the screen horizontally, (make text and everything appear backward), not rotate the screen. This I can do...wish the other was that easy. Any more ideas are most welcome and thanks to you all again.
  4. Hi, I was wondering if anyone knew of a way to horizontally flip, (not rotate), the screen in XP/Win7? Linux has a way, it seems, but I don't use it much. I am trying to mirror the monitor output so I can use a mirror to reflect the video screen. I've looked into rear projection and NVidia Keystone and have had no success so far, (Keystone doesn't work on my video card and can't find any rear projection software that does the job). I was thinking of 3 different ways to approach this: Software based. This I was hoping AutoIt might handle, though it may be the slowest way to do it.Hardware based. I thought of rewiring the VGA connector to maybe get a reverse horizontal scan, but no info on this so far.Driver based. Either finding a driver online, (no luck there), or making my own. Can you make drivers with AutoIt?Hope someone can help me with this. I am in the middle of a project and this is the one thing holding it up. Thanks.
  5. Ahhhhhhhhh! Very nice! The word wrap thing would be a nice feature for them to add too, but I'm happy with this. Thanks, man.
  6. Is there a way to make the scripts you post keep their original formating, like the tabs? Also, is there a word wrap feature I am missing, (can't seem to find one)? Thanks.
  7. I had created a hook to get the values of the mouse wheel and button a while back, but have recently wanted more from this small function. I wanted to be able to disable or reroute mouse events by simply placing values into variables, without the need for calling functions. The following is the result. #cs MOUSE HOOK This function hooks, (captures), all mouse events and can programmatically disable or redirect them to other functions. Call MWHL_INIT() to initialize. The following variables either offer information or control the flow of mouse events: $MWHL = Wheel turned up or down, (1=up, -1=down, 0=idle) $MBUT = Middle Button, (1=click, 0=not) $BM, (Block Mouse), variables disable or control flow. By making them 1, they will disable an event, (ie. $BMMM=1 disables all Mouse Movement). By placing a function name in them, you can redirect the event to a function, (ie. $BMRD="CapRite" captures the right mouse button and sends it to the CapRite() function): $BMMM = Mouse Move $BMLD = Left Down $BMLU = Left Up $BMRD = Right Down $BMRD = Right Up $BMMD = Middle Down $BMMU = Middle Up $BMMS = Middle Scroll Be sure to set $BM variables to zero to re-enable normal functioning. Finally, to disable the hook, call MWHL(-1,-1,-1). #ce Func MWHL_INIT() Global $MWHL,$BMMS=0,$BMLD=0,$BMLU=0, $BMRD=0, $BMRU=0, $BMMD=0,$BMMU=0,$BMMM=0,$MBUT,$mwhl_call=DllCall("kernel32.dll","hwnd","GetModuleHandle","ptr",0),$mwhl_back=DllCall("user32.dll","hwnd","SetWindowsHookEx","int",14,"ptr",DllCallbackGetPtr(DllCallbackRegister("MWHL","int","hwnd;uint;long")),"hwnd",$mwhl_call[0],"dword",0),$MVAR[12]=["","$BMMM","$BMLD","$BMLU","","$BMRD","$BMRU","","$BMMD","$BMMU","","$BMMS"] EndFunc Func MWHL($h,$m,$l) If $h=-1 AND $m=-1 AND $l=-1 Then Return DllCall("user32.dll", "int", "UnhookWindowsHookEx", "hwnd", $mwhl_back[0]) Global $MWHL=BitShift(DllStructGetData(DllStructCreate("int X;int Y;dword mouseData",$l),3),16)/120, $MBUT=($m=0x208),$MEVENT=BitAND($m, 0xFFFF) If $MEVENT<512 OR $MEVENT>522 Then Return Local $MV=Execute($MVAR[$MEVENT-511]) If IsString($MV) Then Call($MV) Return 1 EndIf Return $MV EndFunc I have tested this a fair amount and then searched the forum for anything just like this, and yes, I know there are other mouse hooks out there, but one of them doesn't seem to get the direction of the mouse wheel, and I just like the simplicity of this one. It's format may seem a bit tight, but I love things that have a lot of power and occupy a little space. Hope someone finds it useful. Cheers, EDIT: BTW, yes, I know I didn't change the names of the calls from my old, original post, but I felt a bit nostalgic about the original functions and decided to leave their names as they are. If you like, change them to whatever you want. *Formatting care of "BrewManNH" Limited. For all your code formatting needs, call BrewManNH's.
  8. For those of us who don't install AutoIt, I would change this code from "Example_Sharing_Memory_Var.au3": If FileExists(@ScriptDir & "" & "Sharing_Memory_Client.exe") = 1 Then $return = Run("Sharing_Memory_Client.exe " & @AutoItPID & " " & $Pointer1 & " " & $Pointer2 & " " & $Pointer3, @ScriptDir) Else If FileExists(@ScriptDir & "" & "Sharing_Memory_Client.au3") = 1 Then $AutoItexePath = RegRead("HKEY_LOCAL_MACHINESOFTWAREAutoIt v3AutoIt", "InstallDir");betaInstallDir for beta $ToRun = '"' & $AutoItexePath & 'AutoIt3.exe "' & ' "' & @ScriptDir & 'Sharing_Memory_Client.au3"' & ' "' & @AutoItPID &'" "' & $Pointer1 & '" "' & $Pointer2 & '" "' & $Pointer3 & '"' Run($ToRun) Else MsgBox(48, "Error" , "'Sharing_Memory_Client.au3' not found" & @CR & "Both applications should be in the same folder.") Exit EndIf EndIf To this code: If FileExists(@ScriptDir & "" & "Sharing_Memory_Client.exe") = 1 Then $return = Run("Sharing_Memory_Client.exe " & @AutoItPID & " " & $Pointer1 & " " & $Pointer2 & " " & $Pointer3, @ScriptDir) Else If FileExists(@ScriptDir & "" & "Sharing_Memory_Client.au3") = 1 Then $ToRun = @AutoItExe & ' /AutoIt3ExecuteScript "' & @ScriptDir & 'Sharing_Memory_Client.au3"' & ' "' & @AutoItPID &'" "' & $Pointer1 & '" "' & $Pointer2 & '" "' & $Pointer3 & '"' Run($ToRun) Else MsgBox(48, "Error" , "'Sharing_Memory_Client.au3' not found" & @CR & "Both applications should be in the same folder.") Exit EndIf EndIf The difference is removing: $AutoItexePath = RegRead("HKEY_LOCAL_MACHINESOFTWAREAutoIt v3AutoIt", "InstallDir");betaInstallDir for beta $ToRun = '"' & $AutoItexePath & 'AutoIt3.exe "' & ' "' & @ScriptDir & 'Sharing_Memory_Client.au3"' & ' "' & @AutoItPID &'" "' & $Pointer1 & '" "' & $Pointer2 & '" "' & $Pointer3 & '"' And adding: $ToRun = @AutoItExe & ' /AutoIt3ExecuteScript "' & @ScriptDir & 'Sharing_Memory_Client.au3"' & ' "' & @AutoItPID &'" "' & $Pointer1 & '" "' & $Pointer2 & '" "' & $Pointer3 & '"' Cheers!
  9. Yeah, my bad. I had forgotten to make allotments for no GUI present. Here's an updated code that should work in most, if not all, situations. <snip> Hope that helps. Cheers.
  10. I suppose if it was recording keys and not just testing for their switching it might be. Is there some kind of paranoia in these parts about keyloggers? A part of programing, in any language, is the ability to give a user the option to input information into one's program. Without this very fundamental acquisition of data, a very large hole is left in one's programing repertoire. Besides, what's the basic difference between what I have made and _IsPressed()? Thanks for the advice. I, thus far, have had no problems with this function. It seems to perform well at relatively low CPU consumption. Of course I've mostly been using it to detect if any key has been pressed on the keyboard or mouse, not to record keys and steal people's passwords. So, it may not be fully tested, and I concede the point. Thanks.
  11. I've been looking for a way to do this for some time now that wasn't too hard on the system, and while _IsPressed() worked OK, I was worried about the drag it could have on some users' CPUs. I haven't done extensive testing of this, but it seems to work pretty good. Hope this is helpful. AnyKey() <snip> Cheers.
  12. Just something I've needed on various occasions. Cheers. 'IsVisible()' #cs IsVisible(WinHandle [, Offset [,Control]]) Check if the middle and all four corners of a window or control are currently visible. $wiv_hWnd = The handle to the window to check, (if blank, the active window will be used). $wiv_offx = [optional] How far inside the window/control you want to check. 5 is a good value for windows since some corners of windows are rounded, especially in the titlebar. More may be needed. $wiv_ctrl = [optional] The control you want to check. Blank if entire window. Returns: = 1 if window/control is visible =-1 if the window does not exist =-2 if the window is hidden =-3 if the window is minimized = 0 or Window Handle/Control Text of the window/control covering the defined window/control #ce Func IsVisible($wiv_hWnd="", $wiv_off=5, $wiv_ctrl="") If NOT IsHWnd($wiv_hWnd) Then $wiv_hWnd=WinGetHandle(WinActive("")) Local $wiv_state=WinGetState($wiv_hWnd) If NOT BitAND($wiv_state, 1) Then Return -1 If NOT BitAND($wiv_state, 2) Then Return -2 If BitAND($wiv_state, 16) Then Return -3 If $wiv_ctrl="" Then Local $wiv_pos=WinGetPos($wiv_hWnd) Else Local $wiv_pos=ControlGetGlobalPos($wiv_hWnd, $wiv_ctrl) EndIf Local $left=$wiv_pos[0]+$wiv_off, $rite=($wiv_pos[0]+$wiv_off)+($wiv_pos[2]-($wiv_off*2)), $top=$wiv_pos[1]+$wiv_off, $botm=($wiv_pos[1]+$wiv_off)+($wiv_pos[3]-($wiv_off*2)), $cenx=$left+Int($wiv_pos[2]/2), $ceny=$top+Int($wiv_pos[3]/2), $lt, $lb, $rt, $rb, $xy $xy=WinFromPoint($cenx, $ceny) If $xy<>$wiv_hWnd AND ChildGetParent($xy)<>$wiv_hWnd Then Return $xy $lt=WinFromPoint($left, $top) If $lt<>$wiv_hWnd AND ChildGetParent($lt)<>$wiv_hWnd Then Return $lt $rb=WinFromPoint($rite, $botm) If $rb<>$wiv_hWnd AND ChildGetParent($rb)<>$wiv_hWnd Then Return $rb $rt=WinFromPoint($rite, $top) If $rt<>$wiv_hWnd AND ChildGetParent($rt)<>$wiv_hWnd Then Return $rt $lb=WinFromPoint($left,$botm) If $lb<>$wiv_hWnd AND ChildGetParent($lb)<>$wiv_hWnd Then Return $lb Return 1 EndFunc Func WinFromPoint($wfp_x, $wfp_y) Local $wfp_pt=DllStructCreate("int X;int Y"),$wfp_1=DllStructSetData($wfp_pt,"x",$wfp_x),$wfp_2=DllStructSetData($wfp_pt,"y",$wfp_y),$wfp_ptr=DllStructCreate("int64",DllStructGetPtr($wfp_pt)),$wfp_ret=DllCall("user32.dll","hwnd","WindowFromPoint","int64",DllStructGetData($wfp_ptr,1)) Return $wfp_ret[0] EndFunc Func ChildGetParent($child_hWnd) Local $child_h=$child_hWnd, $child_ret If NOT IsHWnd($child_hWnd) Then $child_h=GUICtrlGetHandle($child_hWnd) If NOT IsHWnd($child_h) Then $child_h=WinGetHandle($child_hWnd) $child_ret=DllCall("user32.dll", "hwnd", "GetParent", "hwnd", $child_hWnd) Return $child_ret[0] EndFunc Func ControlGetGlobalPos($cts_hWnd, $cts_ctrl) If NOT IsHWnd($cts_hWnd) Then $cts_hWnd=WinGetHandle($cts_hWnd) If NOT IsHWnd($cts_ctrl) Then $cts_ctrl=GuiCtrlGetHandle($cts_ctrl) Local $cts_tmp=ControlGetPos($cts_hWnd,"",$cts_ctrl), $cts_tp=DllStructCreate("int X;int Y"), $cts_ret, $cts_1=DllStructSetData($cts_tp, 1, $cts_tmp[0]), $cts_2=DllStructSetData($cts_tp, 2, $cts_tmp[1]), $cts_3=DllCall("user32.dll", "int", "ClientToScreen", "hwnd", $cts_hWnd, "ptr", DllStructGetPtr($cts_tp)) Return StringSplit(DllStructGetData($cts_tp, 1)&"|"&DllStructGetData($cts_tp, 2)&"|"&$cts_tmp[2]&"|"&$cts_tmp[3], "|", 2) EndFunc
  13. Very interesting. I am not sure what I am looking at yet. Is it an actual way to create real GUIs with customizable controls, titlebars, etc., or is it a work-around, like removing the titlebar from the GUI and using an image for the titlebar, buttons, etc.? I must say, it's quite lovely. Kudos. Either way, thanks for your reply. Cheers.
  14. No one has any ideas? I was sure someone from this forum could figure this out. I know I can't.
  15. I am confused. Do you want to run a GUI from DOS or do you want to make a DOS GUI that runs in Windows? EDIT: If it's the latter, then maybe this might get you started: $GUI_Form1=GUICreate("Command Prompt Sim", @DesktopWidth*.8, @DesktopHeight*.8) $GUI_Edit1=GUICtrlCreateEdit(@CRLF, 0, 0, @DesktopWidth*.8, @DesktopHeight*.8, 2102468) ;BitOR($ES_AUTOVSCROLL,$ES_OEMCONVERT,$ES_AUTOHSCROLL,$ES_WANTRETURN,$ES_MULTILINE,$WS_VSCROLL)) GUICtrlSetFont(-1, 14, 800, 0, "Courier New") GUICtrlSetBkColor(-1, 0xEFEDC9) GUICtrlSetColor(-1, 0x0000A6) GUISetState() $dos=Run(@ComSpec & " /k ", "", @SW_HIDE, 7) $send="" $def_dir="" While 1 $nMsg=GUIGetMsg() $dosgetout=StdoutRead($dos) $doserrgetout=StderrRead($dos) If $nMsg=-3 Then ExitLoop $tmp=GUICtrlRead($GUI_Edit1) If $dosgetout OR $doserrgetout Then If $dosgetout AND $dosgetout<>$send Then GUICtrlSetData($GUI_Edit1, $tmp & $dosgetout) Else If $doserrgetout<>$Send Then GUICtrlSetData($GUI_Edit1, $tmp & $doserrgetout) EndIf DllCall("user32.dll", "int", "SendMessage", "hwnd", GUICtrlGetHandle($GUI_Edit1), "int", 182, "wparam", 0, "lparam", 1000000) EndIf If GetEnter() Then $send=StringMid($tmp, StringInStr($tmp, @CRLF, 0, -2)) $send=StringMid($send, StringInStr($send, ">")+1) If StringLen($send)>2 Then StdInWrite($dos, $send) EndIf WEnd ProcessClose($dos) Func GetEnter() If IsDeclared("key_timer") AND TimerDiff($key_timer)<50 Then Return Global $key_timer = TimerInit() $g_temp = DllCall("user32.dll", "long", "GetAsyncKeyState", "long", 13) If BitAND($g_temp[0], 0x8000) = 0x8000 Then Return 1 Return 0 EndFunc Cheers
  16. BTW, I am digging the new forum look and functionality. Nice work guys.
  17. I've seen many queries about creating a custom button in the titlebar, and have also seen many interesting work-arounds for doing such a thing, (mostly ones involving the creation of an independent popup GUI that chase the applications caption bar around the screen). I have, of course, tried AnyGUI, but this isn't really what I am looking for. I've been trying to actually attach a button to an application as if it were in the applications design so that no work-around is needed. I found the following NET Framework script that seemed very fundamental, and, hopefully, easier to convert. I am not a NET Framework programmer, so quite clueless is my attempt here. This is my very unsuccessful attempt at translating this into AutoIt code: #Include <GDIPlus.au3> #Include <WinAPI.au3> Global $WM_NCPAINT=0x85 Global $GUI_Form1=GUICreate("", 400, 100) $GUI_label=GUICtrlCreateLabel("", 0, 20, 400, 100) GUISetState() _GDIPlus_Startup() $hDC=_WinAPI_GetWindowDC($GUI_Form1) _WinAPI_ReleaseDC($GUI_Form1, $hDC) #cs The author said this is used only if drawing problems occur, (or somthing like that). DllCall("user32.dll", "int", "DisableProcessWindowsGhosting") #ce $ret=SetWindowTheme($GUI_Form1) GUICtrlSetData($GUI_label, " ERROR CODE: " & $ret[0] & @CRLF & " HANDLE,(To ?): " & $ret[1]) GUIRegisterMsg($WM_NCPAINT, "WM_NCPAINT") While GUIGetMsg()<>-3 WEnd _GDIPlus_Shutdown() Func WM_NCPAINT($hWnd, $msg, $wParam, $lParam) Switch $msg Case $WM_NCPAINT If NOT IsHWnd($hWnd) Then $hWnd=$GUI_Form1 Local $hDC=_WinAPI_GetWindowDC($hWnd), $hGO=_GDIPlus_GraphicsCreateFromHDC($hDC), $wGP=WinGetPos($hWnd) _GDIPlus_GraphicsDrawRect($hGO, ($wGP[2]-20)/2, 8, 20, 20, 0) _WinAPI_ReleaseDC($hWnd, $hDC) EndSwitch Return "GUI_RUNDEFMSG" EndFunc #cs SetWindowTheme Causes a window to use a different set of visual style information than its class normally uses. Returns S_OK if successful, HRESULT error code if not. $hWnd= Handle to the window whose visual style information is to be changed. $pSAN= Pointer to a string that contains the application name to use in place of the calling application's name. If this parameter is NULL, the calling application's name is used. $pSIL= Pointer to a string that contains a semicolon-separated list of CLSID names to use in place of the actual list passed by the window's class. If this parameter is NULL, the ID list from the calling class is used. RETURNS: If the method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code. #ce Func SetWindowTheme($hWnd, $pSAN="", $pSIL="") Local $a=DllCall("UxTheme.dll", "int", "SetWindowTheme", "hwnd", $hWnd, "ptr", $pSAN, "ptr", $pSIL) Return $a EndFunc This uses UxTheme DLL to set up the customization, (I guess), and some kind of drawing to a rectangle, (the button, I assume). Other then all my widely speculative assumptions, the code seems fairly straight forward. Can anyone give me a hand with this, I am completely lost?
  18. Not bad. Kinda the same thing, but since AutoIt already has Primary & Secondary Up & Down events, all I really needed was the middle mouse schtuff. Plus I like the simplicity of small, uncomplicated functions...I'm getting old and if I can keep it simple, I'm much more happy, (and less confused). Thanks fer yer reply and cheers. EDIT: By the way, I was looking through your UDFs, and I must say you have some nice functions there. Keep up the good work.
  19. Just thought I'd leave this here. #cs ; Returns $MWHL as: 1=up, -1=down, 0=idle ; Returns $MBUT as: 1=Click, 0=Not ; *** EXAMPLE *** MWHL_INIT() While GUIGetMsg()<>-3 If $MWHL+$MBUT Then MsgBox(0,"",StringMid("UpDownClick",StringInStr("1 -1 2",$MWHL+($MBUT*2),1),3+($MWHL*-1)+($MBUT*2))) WEnd #ce Func MWHL_INIT() Global $MWHL, $MBUT,$mwhl_call=DllCall("kernel32.dll","hwnd", "GetModuleHandle","ptr",0),$mwhl_back=DllCall("user32.dll","hwnd","SetWindowsHookEx","int",14,"ptr",DllCallbackGetPtr(DllCallbackRegister("MWHL","int","hwnd;uint;long")),"hwnd",$mwhl_call[0],"dword",0) EndFunc Func MWHL($h,$m,$l) $MWHL=BitShift(DllStructGetData(DllStructCreate("int X;int Y;dword mouseData", $l), 3), 16)/120 $MBUT=($m=0x208) EndFunc
  20. Yeah, you're right. And I had learned some VB back with old VB3, but I didn't like the language much. That's why I came to AutoIt. Easy to program, FREE, and no MS proprietary DLLs needed. Plus, by the time I had decided on AutoIt I had already learned more languages then I had cared to. If I had learned as many spoken languages, I'd have been working at the UN by now. I hate to do it, but it looks like I am going to have to break down and learn C++. It is widely used and has a massive support system. And, everytime I have a blockage here in AutoIt, it seems the answers can always be found in C++, (sometimes VB). OK, I've blathered on long enough. Thanks again to all respondents. Take care. Cheers
  21. Oh, yes. It's a nice piece of work. Especially as hard as all this seems to be. Though it is a handy plugin and UDFs, I am concerned with a greater scope of issues. Such as individual card selection in a multi-sound card system, playback and record device selection and manipulation, etc. I know, I know... as complicated as this is I should feel lucky there is anything available, and I am, really. Its just that I am creating this complex audio program that works great in XP, but, for obvious reasons, not at all in Vista or Windows 7. The reason it mattered to me is because I am hitting a wall and was hoping someone could help guide me toward the right direction. Perhaps there is something obvious, (or not so obvious), that I was overlooking. Really do appreciate everyones input. I'll keep hacking away at it, but, I fear, I am at the point of throwing my hands in the air and just making this program for XP users only. I hate to go there, but it seems I'd have to learn C++ or VB to really get into this, and frankly, I am an AutoIt fan...like to stay right here. Again, thanks all. Cheers
  22. Nice. I've been friggin' with it for awhile and have come to the conclusion that I am beating my head against Microsoft's proprietary wall. Think this has to do with MS moneys/greed or just more MS short sightedness? Mein Deutsch ist nicht gut, so getting through your previous post will take a moment, (or three). Thanks for your reply, man. First real one I've gotten since I've join this forum. Haben sie einen guten tag. And danke. If it didn't REALLY matter, I wouldn't have posted. This seems to be a large issue, the effects of which are spreading throughout AutoIt forums and members. Windows 7 is all but here and its audio make up seems to have been inherited from Vista. This isn't an issue that is going away quietly...well, unless we all switch to Linux. Not my first choice. Anywho, I'll keep chopping away at it and see what I can do. If I come up with anything substantial, like ProgAndy, I'll post here. Wish me luck. Cheers.
  23. Has anyone looked into using WaveRT, (WASAPI), as a means for dealing with Vista's, (Windows 7), audio. MSDN on WASAPI: http://msdn.microsoft.com/en-us/library/dd371455(VS.85).aspx MSDN on WaveRT: http://msdn.microsoft.com/en-us/library/aa474703.aspx Does anyone know if any support for Vista/Win7 audio is under construction, or if anyone is working on UDFs for it? (Found some stuff at The Codeproject, though it looks like Greek to me, ). And yes, I have checked out the fine works of Volly and other excellent coders. EDIT: OOPS! Double posting! My bad.
  24. Really? I find it hard to believe, given the incompatabilities between XP's and Vista's audio, that no one has at least taken a look at this. Does anyone know if any support for Vista/Win7 audio is under construction, or if anyone is working on UDFs for it? (Found some stuff at: The Codeproject, though it looks like Greek to me, ). And yes, I have checked out the fine works of Volly and other excellent coders. Cheers. *ADDENDUM: Hmmm, quiet in these here parts. Must be my aftershave.
  25. Has anyone looked into using WaveRT, (WASAPI), as a means for dealing with Vista's, (maybe Windows 7), audio. MSDN on WASAPI: http://msdn.microsoft.com/en-us/library/dd371455(VS.85).aspx MSDN on WaveRT: http://msdn.microsoft.com/en-us/library/aa474703.aspx
×
×
  • Create New...