active questions tagged winapi - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T17:01:14Z http://stackoverflow.com/feeds/tag/winapi http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/668389/calling-createprocessasuser-from-c 2 Calling CreateProcessAsUser from C# Noldorin 2009-03-20T23:49:05Z 2009-12-03T16:54:28Z <p>I've been attempting to create a new process under the context of a specific user using the <code>CreateProcessAsUser</code> function of the Windows API, but seem to be running into a rather nasty security issue...</p> <p>Before I explain any further, here's the code I'm currently using to start the new process (a console process - PowerShell to be specific, though it shouldn't matter).</p> <pre><code> private void StartProcess() { bool retValue; // Create startup info for new console process. var startupInfo = new STARTUPINFO(); startupInfo.cb = Marshal.SizeOf(startupInfo); startupInfo.dwFlags = StartFlags.STARTF_USESHOWWINDOW; startupInfo.wShowWindow = _consoleVisible ? WindowShowStyle.Show : WindowShowStyle.Hide; startupInfo.lpTitle = this.ConsoleTitle ?? "Console"; var procAttrs = new SECURITY_ATTRIBUTES(); var threadAttrs = new SECURITY_ATTRIBUTES(); procAttrs.nLength = Marshal.SizeOf(procAttrs); threadAttrs.nLength = Marshal.SizeOf(threadAttrs); // Log on user temporarily in order to start console process in its security context. var hUserToken = IntPtr.Zero; var hUserTokenDuplicate = IntPtr.Zero; var pEnvironmentBlock = IntPtr.Zero; var pNewEnvironmentBlock = IntPtr.Zero; if (!WinApi.LogonUser("UserName", null, "Password", LogonType.Interactive, LogonProvider.Default, out hUserToken)) throw new Win32Exception(Marshal.GetLastWin32Error(), "Error logging on user."); var duplicateTokenAttrs = new SECURITY_ATTRIBUTES(); duplicateTokenAttrs.nLength = Marshal.SizeOf(duplicateTokenAttrs); if (!WinApi.DuplicateTokenEx(hUserToken, 0, ref duplicateTokenAttrs, SECURITY_IMPERSONATION_LEVEL.SecurityImpersonation, TOKEN_TYPE.TokenPrimary, out hUserTokenDuplicate)) throw new Win32Exception(Marshal.GetLastWin32Error(), "Error duplicating user token."); try { // Get block of environment vars for logged on user. if (!WinApi.CreateEnvironmentBlock(out pEnvironmentBlock, hUserToken, false)) throw new Win32Exception(Marshal.GetLastWin32Error(), "Error getting block of environment variables for user."); // Read block as array of strings, one per variable. var envVars = ReadEnvironmentVariables(pEnvironmentBlock); // Append custom environment variables to list. foreach (var var in this.EnvironmentVariables) envVars.Add(var.Key + "=" + var.Value); // Recreate environment block from array of variables. var newEnvironmentBlock = string.Join("\0", envVars.ToArray()) + "\0"; pNewEnvironmentBlock = Marshal.StringToHGlobalUni(newEnvironmentBlock); // Start new console process. retValue = WinApi.CreateProcessAsUser(hUserTokenDuplicate, null, this.CommandLine, ref procAttrs, ref threadAttrs, false, CreationFlags.CREATE_NEW_CONSOLE | CreationFlags.CREATE_SUSPENDED | CreationFlags.CREATE_UNICODE_ENVIRONMENT, pNewEnvironmentBlock, null, ref startupInfo, out _processInfo); if (!retValue) throw new Win32Exception(Marshal.GetLastWin32Error(), "Unable to create new console process."); } catch { // Catch any exception thrown here so as to prevent any malicious program operating // within the security context of the logged in user. // Clean up. if (hUserToken != IntPtr.Zero) { WinApi.CloseHandle(hUserToken); hUserToken = IntPtr.Zero; } if (hUserTokenDuplicate != IntPtr.Zero) { WinApi.CloseHandle(hUserTokenDuplicate); hUserTokenDuplicate = IntPtr.Zero; } if (pEnvironmentBlock != IntPtr.Zero) { WinApi.DestroyEnvironmentBlock(pEnvironmentBlock); pEnvironmentBlock = IntPtr.Zero; } if (pNewEnvironmentBlock != IntPtr.Zero) { Marshal.FreeHGlobal(pNewEnvironmentBlock); pNewEnvironmentBlock = IntPtr.Zero; } throw; } finally { // Clean up. if (hUserToken != IntPtr.Zero) WinApi.CloseHandle(hUserToken); if (hUserTokenDuplicate != IntPtr.Zero) WinApi.CloseHandle(hUserTokenDuplicate); if (pEnvironmentBlock != IntPtr.Zero) WinApi.DestroyEnvironmentBlock(pEnvironmentBlock); if (pNewEnvironmentBlock != IntPtr.Zero) Marshal.FreeHGlobal(pNewEnvironmentBlock); } _process = Process.GetProcessById(_processInfo.dwProcessId); } </code></pre> <p>For the sake of the issue here, ignore the code dealing with the environment variables (I've tested that section independently and it seems to work.)</p> <p>Now, the error I get is the following (thrown at the line following the call to <code>CreateProcessAsUSer</code>):</p> <blockquote> <p>"A required privilege is not held by the client" (error code 1314)</p> </blockquote> <p>(The error message was discovered by removing the message parameter from the Win32Exception constructor. Admittedly, my error handling code here may not be the best, but that's a somewhat irrelevant matter. You're welcome to comment on it if you wish, however.) I'm really quite confused as to the cause of this vague error in this situation. MSDN documentation and various forum threads have only given me so much advice, and especially given that the causes for such errors appear to be widely varied, I have no idea which section of code I need to modify. Perhaps it is simply a single parameter I need to change, but I could be making the wrong/not enough WinAPI calls for all I know. What confuses me greatly is that the previous version of the code that uses the plain <code>CreateProcess</code> function (equivalent except for the user token parameter) worked perfectly fine. As I understand, it is only necessary to call the Logon user function to receive the appropriate token handle and then duplicate it so that it can be passed to <code>CreateProcessAsUser</code>.</p> <p>Any suggestions for modifications to the code as well as explanations would be very welcome.</p> <h2>Notes</h2> <p>I've been primarily referring to the MSDN docs (as well as <a href="http://pinvoke.net" rel="nofollow">PInvoke.net</a> for the C# function/strut/enum declarations). The following pages in particular seem to have a lot of information in the Remarks sections, some of which may be important and eluding me:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/ms682429%28VS.85%29.aspx" rel="nofollow">CreateProcessAsUser function</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/aa378184%28VS.85%29.aspx" rel="nofollow">LogonUser function</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/aa446617%28VS.85%29.aspx" rel="nofollow">DuplicateTokenEx function</a></li> </ul> <h1>Edit</h1> <p>I've just tried out Mitch's suggestion, but unfortunately the old error has just been replaced by a new one: "The system cannot find the file specified." (error code 2)</p> <p>The previous call to <code>CreateProcessAsUser</code> was replaced with the following:</p> <pre><code>retValue = WinApi.CreateProcessWithTokenW(hUserToken, LogonFlags.WithProfile, null, this.CommandLine, CreationFlags.CREATE_NEW_CONSOLE | CreationFlags.CREATE_SUSPENDED | CreationFlags.CREATE_UNICODE_ENVIRONMENT, pNewEnvironmentBlock, null, ref startupInfo, out _processInfo); </code></pre> <p>Note that this code no longer uses the duplicate token but rather the original, as the MSDN docs appear to suggest.</p> <p>And here's another attempt using <code>CreateProcessWithLogonW</code>. The error this time is "Logon failure: unknown user name or bad password" (error code 1326)</p> <pre><code>retValue = WinApi.CreateProcessWithLogonW("Alex", null, "password", LogonFlags.WithProfile, null, this.CommandLine, CreationFlags.CREATE_NEW_CONSOLE | CreationFlags.CREATE_SUSPENDED | CreationFlags.CREATE_UNICODE_ENVIRONMENT, pNewEnvironmentBlock, null, ref startupInfo, out _processInfo); </code></pre> <p>I've also tried specifying the username in UPN format ("Alex@Alex-PC") and passing the domain independently as the second argument, all to no avail (identical error).</p> http://stackoverflow.com/questions/1839221/audio-device-change-speaker-setup 1 Audio Device, change Speaker setup Andy 2009-12-03T11:00:55Z 2009-12-03T15:40:38Z <p>Hi Guys, </p> <p>I want to change from my program the speaker setup, which is under speaker settings / advanced... section.</p> <p>I tried to find maybe there is some sort of registry entry but no luck till now :|</p> <p>Any Ideas ?</p> <p>Thanks a lot !</p> http://stackoverflow.com/questions/1617856/choosing-between-wpf-wxwidgets-win32-api-and-mfc 1 Choosing between WPF, wxWidgets, Win32 API and MFC Salv0 2009-10-24T12:16:21Z 2009-12-03T15:28:14Z <p>Imagine you are on Windows 7 and you have to write a GUI for a GRAPHIC application, (like a terrain editor, mesh viewer ..) which involves a great use of DirectX and OpenGL (so written in native C++). If your goal is a multi-platform software then you should go for wxWidgets, but imagine you're doing a Windows' only app...what would your choice be? and why?</p> <p>I'm supposing that the application would work on both XP and Vista/7 and obviously in the WPF case the UI will be managed, but it will call native functions by a C++/CLI proxy-like class ( will "bouncing" from managed-native and native-managed cause performance issues? ).</p> http://stackoverflow.com/questions/4638/how-do-you-create-your-own-moniker-url-protocol-on-windows-systems 2 How do you create your own moniker (URL Protocol) on Windows systems? Brett Veenstra 2008-08-07T12:31:42Z 2009-12-03T14:31:01Z <p>How do you create your own custom moniker (or URL Protocol) on Windows systems?</p> <p>Examples:</p> <ul> <li>http:</li> <li>mailto:</li> <li>service:</li> </ul> http://stackoverflow.com/questions/1825868/how-to-prevent-window-resizing-temporarily 1 How to prevent window resizing temporarily? Suma 2009-12-01T12:22:30Z 2009-12-03T11:41:22Z <p>I have a window which can be resized, but there are some situations when resizing is not possible because of the application state. Is there a way to prevent resizing the window temporarily?</p> <p>I want to disable resizing by all means available to the users, which include window menu, dragging edges by mouse, user initiated window tiling performed by OS - and perhaps some other I am not aware of?</p> http://stackoverflow.com/questions/202031/using-shfileoperation-within-a-windows-service 1 Using SHFileOperation within a Windows service Charles 2008-10-14T17:13:20Z 2009-12-03T06:23:34Z <p>It's possible, but is it appropriate to use SHFileOperation within a Windows service? All those SHxxx API functions in shell32.dll seem to have been written with user level programs in mind. Can I be certain SHFileOperation won't display GUI ever?</p> http://stackoverflow.com/questions/1713389/wmi-vs-windows-apis 1 WMI vs Windows APIs RRUZ 2009-11-11T06:16:39Z 2009-12-02T23:01:46Z <p>There are any advantages or disadvantages of using the <a href="http://msdn.microsoft.com/en-us/library/aa394582%28VS.85%29.aspx" rel="nofollow">WMI</a> instead of <a href="http://msdn.microsoft.com/en-us/library/aa383749%28VS.85%29.aspx" rel="nofollow">Windows API</a> to access to the information of the system? as speed, additional permissions, memory usage.</p> <p>or depends on the WMI class and how the WMI implements the access to the information?</p> http://stackoverflow.com/questions/1826165/wmentersizemove-wmexitsizemove-when-using-menu-not-always-paired 0 WM_ENTERSIZEMOVE / WM_EXITSIZEMOVE - when using menu, not always paired Suma 2009-12-01T13:23:39Z 2009-12-02T18:27:45Z <p>To prevent my application changing the window content while user is moving its window around, I capture messages <code>WM_ENTERSIZEMOVE</code> / <code>WM_EXITSIZEMOVE</code> and I pause the application between the messages. However, sometimes it happens I receive <code>WM_ENTERSIZEMOVE</code> but no <code>WM_EXITSIZEMOVE</code> at all. One repro is:</p> <ul> <li>open the window menu</li> <li>click on Size</li> <li>do not resize the window, rather click into the window</li> </ul> <p>Notice the window never received any <code>WM_EXITSIZEMOVE</code>.</p> <p>When checking how this works, I have also checked Microsoft DirectX sample and I have noticed the same problem. Once you follow the repro steps above, the sample application looks frozen (I have tried it just now with BasicHLSL sample from March 2009 SDK).</p> <p>How is the application expected to respond to this? Are there some other conditions which should terminate the <em>"moving or sizing modal loop"</em>?</p> http://stackoverflow.com/questions/1833794/why-is-winapi-so-much-different-from-normal-c 2 Why is WinAPI so much different from "normal" C? Inno 2009-12-02T15:52:22Z 2009-12-02T16:37:03Z <p>Hello,</p> <p>I wonder why the WinAPI is so much different from "normal" C programming?</p> <p>I mean, in school I learned that every C programm has a main() function (WinAPI uses WinMain with some special parameters), some variable types like int, long, char etc. (WinAPI uses things like LPCSTR, BOOL, etc.) so why did Microsoft decide to go such a different way with their OS API?</p> <p>When I saw my first WinAPI program I it looks more like a new language to me... ;)</p> http://stackoverflow.com/questions/1821540/does-anyone-know-of-a-vba-6-example-using-getlocaleinfoex 0 Does anyone know of a VB(A/6) example using GetLocaleInfoEx? Oorang 2009-11-30T18:31:06Z 2009-12-02T09:39:13Z <p>I thought I dug most of what I need out of the header files, but I keep crashing out.<br> Here is the declare I tried using, but I don't think it's just an issue of the declare. I think I'm actually using it wrong.<br></p> <pre><code>Private Declare Function GetLocaleInfoEx Lib "kernel32" ( _ ByVal lpLocaleName As Long, _ ByVal LCType As Long, _ ByRef lpLCData As Long, _ ByVal cchData As Long _ ) As Long </code></pre> <p><a href="http://msdn.microsoft.com/en-us/library/dd318103%28VS.85%29.aspx" rel="nofollow">Here</a> is the corresponding documentation.<br> <strong>EDIT by MarkJ</strong>: Oorang wants to use GetLocaleInfoEx because the MSDN docs say it is preferred on Vista. </p> http://stackoverflow.com/questions/1829342/open-cd-dvd-door-with-a-windows-api-call 0 Open CD/DVD door with a Windows API call? gemisigo 2009-12-01T22:18:08Z 2009-12-02T08:52:44Z <p>How do I open the CD/DVD door with a Windows API call?</p> http://stackoverflow.com/questions/1643676/how-to-repeat-key-strokes-with-sendinput 1 How to repeat key strokes with SendInput? LonelyPixel 2009-10-29T13:20:30Z 2009-12-02T04:24:10Z <p>I'm writing a little tool in VC++ to record key strokes to replay them later, a macro recorder. It works quite nice already, using a keyboard hook function that reads each and every key press and release event. The playback works with the SendInput() function and generally also works fine - except for repeating key strokes. Pressing a key several times after releasing it every time is no problem. But pressing it and holding it down, for the input character to be repeated, can be recorded but can only be replayed in some applications. Some accept and enter the character multiple times, some do it only once. (It is reproducible which does which.) The macro recorder itself also sees the held down key pressed just a single time during playback, through its monitoring hook.</p> <p>So, how can I make SendInput send multiple subsequent key strokes of a single key without adding key release events on my own in between? Sending a sequence of [press] [press] [press] ... [release] doesn't always work.</p> http://stackoverflow.com/questions/1820489/creating-a-new-email-message-using-the-default-email-program 0 Creating a new email message using the default email program Mark 2009-11-30T15:29:16Z 2009-12-02T01:27:09Z <p>How can I programatically open a new message window in the default email client (such as Outlook) using Windows API calls? I will need to include an attachment and would prefer to specify the default message body in 'rich text' (ie. not plain) format.</p> http://stackoverflow.com/questions/1826577/create-process-doesnt-work 0 Create Process doesn't work Leandro 2009-12-01T14:35:45Z 2009-12-01T14:49:44Z <p>Hi, I'm creating a process and making a lot of kernel objects requisition to the system. My code is that:</p> <pre><code>int main(){ //Cria processo para o Data Viewer Unit LPSTARTUPINFOA si; PROCESS_INFORMATION pi; // Start the child process. if(!CreateProcessA( "E:\\Documents\\Faculdade\\Matérias\\Automação em Tempo Real\\TP 3\\DataViewerUnit\\Debug\\DataViewerUnit.exe", // Module name NULL, // Command line NULL, // Process handle not inheritable NULL, // Thread handle not inheritable FALSE, // Set handle inheritance to FALSE CREATE_NEW_CONSOLE, // No creation flags NULL, // Use parent's environment block NULL, // Use parent's starting directory si, // Pointer to STARTUPINFO structure &amp;pi ) // Pointer to PROCESS_INFORMATION structure ) { printf( "CreateProcess failed (%d).\n", GetLastError() ); return 0; } // Wait until child process exits. WaitForSingleObject( pi.hProcess, INFINITE ); LOG("Traffic System initiating..."); LOG("Keyboard commands:\n" "0 - Changes the system mode to manual.\n" "1 - Changes the system mode to automatic.\n" "Spacebar - Swaps between buffer lock and unlock.\n" "ESC - Terminates the program." ); system("PAUSE"); isAutoMode = TRUE; terminate_progam = FALSE; terminate_TOU = FALSE; bufferSpace = BUFFER_SIZE; InitializeCriticalSection(&amp;bufferCS); system("PAUSE"); hMailslot = CreateFile(MAILSLOT, GENERIC_WRITE, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); ASSERT(hMailslot, "Mailslot couldn't be created"); hHasPosition = CreateSemaphore(NULL, BUFFER_SIZE, BUFFER_SIZE, (LPCWSTR)"HAS_POSITION"); ASSERT(hHasPosition, "Positions to write semaphore couldn't be created."); hHasMsg = CreateSemaphore(NULL, 0, BUFFER_SIZE, (LPCWSTR)"HAS_MSG"); ASSERT(hHasMsg, "Messages to read semaphore couldn't be created."); hBufferLockStatus = CreateEvent(NULL, true, true, (LPCWSTR)"BUFFER_LOCK_STATUS"); ASSERT(hBufferLockStatus, "Lock status semaphore couldn't be created."); hTimer = CreateSemaphore(NULL, 0, 1, (LPCWSTR)"REMOTE_UNITS_TIMER"); ASSERT(hTimer, "Timer semaphore couldn't be created."); nextMsgToRead = 0; nextPositionToWrite = 0; for (int i = 0;i &lt; RU_QUANTITY;i++) { hRUs[i] = (HANDLE) _beginthreadex(NULL, 0, (CAST_FUNCTION)RUAction, (LPVOID)i, 0, NULL); ASSERT(hRUs[i], "RU " &lt;&lt; i &lt;&lt; "could not be created."); DEBUG("RU " &lt;&lt; i &lt;&lt; " created."); RUTime[i] = generateTime(100, 200); DEBUG("Remote Unit " &lt;&lt; i &lt;&lt; " interval: " &lt;&lt; RUTime[i]); } HANDLE hTOU = (HANDLE) _beginthreadex(NULL, 0, (CAST_FUNCTION)TOUAction, NULL, 0, NULL); ASSERT(hTOU, "Traffic Optimization Unit couldn't be created."); bool isLocked = false; int typed; do{ typed = _getch(); switch(typed){ case CHAR0: if(isAutoMode) LOG("You changed the mode to manual.") else LOG("Mode is already manual.") isAutoMode = false; break; case CHAR1: if(!isAutoMode) LOG("You changed the mode to automatic.") else LOG("Mode is already automatic.") isAutoMode = true; break; case SPACEBAR : if(isLocked){ isLocked = false; SetEvent(hBufferLockStatus); LOG("You unlocked the buffer."); } else { isLocked = true; ResetEvent(hBufferLockStatus); LOG("You locked the buffer."); } break; Default: break; } } while (typed!=ESC); LOG("You typed ESC, the program will be finished."); //Pede o fim das threads terminate_progam = true; // Importante para que as threads não fiquem // travadas sem poder terminar. SetEvent(hBufferLockStatus); WaitForMultipleObjects(RU_QUANTITY, hRUs, TRUE, INFINITE); terminate_TOU = true; WaitForSingleObject(hTOU, INFINITE); // Close process and thread handles. CloseHandle(pi.hProcess); CloseHandle(pi.hThread); CloseHandle(hHasMsg); CloseHandle(hHasPosition); CloseHandle(hBufferLockStatus); CloseHandle(hTimer); return 0; } </code></pre> <p>I have commented almost of all this code and the create process runs ok. When I left more than 1 kernel object, the program stop to run and windows vista shows a message of "This program stop to run...". The other process has just a cout saying something...</p> <p>I would like to know what is wrong with my code. Regards, Leandro Lima </p> http://stackoverflow.com/questions/1626993/ifilesavedialog-choosing-folders-in-windows-7 1 IFileSaveDialog - choosing folders in Windows 7 Michael Brewer-Davis 2009-10-26T19:58:17Z 2009-12-01T06:50:03Z <p>In Vista, I have been using an <code>IFileSaveDialog</code> to let users pick a "save-as" folder. Users export a folder of images, say, and need to choose a new or existing target folder.</p> <p>Briefly, the code goes like this:</p> <pre><code>IFileSaveDialog* dialog; // created dialog-&gt;SetOptions(FOS_PICKFOLDERS); dialog-&gt;Show(NULL); dialog-&gt;GetResult(&amp;shellItem) </code></pre> <p>In Windows 7, the <code>FOS_PICKFOLDERS</code> option appears to have been disallowed (and is marked as such in <a href="http://msdn.microsoft.com/en-us/library/bb775708%28VS.85%29.aspx" rel="nofollow">the API</a>). The return value on the <code>SetOptions</code> call is <code>E_INVALIDARG</code>. If I use a IFileOpenDialog, I'm allowed to set the folders option, but the user is prompted with an error when choosing a nonexistent folder (despite my setting flags suggesting not to do this).</p> <p>Is there an alternate way to get the new <code>IFileDialog</code> to act as a "save folder" dialog?</p> <p>[To head off some comments, the SHBrowseForFolder API still exists, but is still not an acceptable solution for our UI deciders.] </p> http://stackoverflow.com/questions/1823628/enumchildwindows-or-findwindowex 1 EnumChildWindows or FindWindowEx? Alien01 2009-12-01T02:22:45Z 2009-12-01T03:16:19Z <p>I have option to use any one of the API EnumChildWindows or FindWindowEx.</p> <p>Any suggestions which api is better performance oriented?</p> <p>Is FindWindowEx internally uses EnumChildWindows to get handle to particular window?</p> http://stackoverflow.com/questions/1817874/how-can-i-listen-for-monitors-being-added-or-removed 0 How can I listen for monitors being added or removed? silent tone 2009-11-30T04:39:52Z 2009-11-30T18:41:00Z <p>On Windows, how can I find out when monitors (physical display devices) are added/removed/detached/resolution changed/etc.? I'd prefer not to poll EnumDisplayDevices().</p> http://stackoverflow.com/questions/1077968/differentiating-between-data-card-and-pen-drive-or-usb-flash-drive 0 Differentiating between data card and pen drive or USB flash drive Vinayaka Karjigi 2009-07-03T06:18:04Z 2009-11-30T05:00:02Z <p>I am having a Vodaphone data card which can be inserted in a USB port.</p> <p>I have XP and Vista OS, and I am using <code>WM_DEVICECHANGE</code> event of Windows, to know USB Insertion and removal, and it's working fine for me.</p> <p>But I am not able to differentiate between Data card insertion and Pen drive insertion. Is it possible?</p> http://stackoverflow.com/questions/1678937/dllmain-and-qt-mfc-migration 0 DllMain and Qt Mfc Migration unknown (google) 2009-11-05T07:36:33Z 2009-11-30T02:27:07Z <p>Hello</p> <p>I am using the Mfc to Qt migration solution, to migrate my Mfc plugin to Qt. My Mfc plugin is loaded in third party Mfc app. Basically I am using the following example <a href="http://doc.trolltech.com/solutions/4/qtwinmigrate/winmigrate-qt-dll-example.html" rel="nofollow">Qt based Application Extension</a> :</p> <pre><code>BOOL WINAPI DllMain( HINSTANCE hInstance, DWORD dwReason, LPVOID ) { static bool ownApplication = FALSE; if ( dwReason == DLL_PROCESS_ATTACH ) ownApplication = QMfcApp::pluginInstance( hInstance ); if ( dwReason == DLL_PROCESS_DETACH &amp;&amp; ownApplication ) delete qApp; return TRUE; } </code></pre> <p>I read the code of pluginInstance function, int the Qt Sources,and notice that pluginInstance calls LoadLibrary and SetWindowsHook inside. </p> <p>Everything is working ok , so far . But I have the following concern : It is forbidden to call LoadLibrary and functions from user32.dll like SetWindowsHook from DllMain. I read that in msdn doc for DllMain. So , if this is unsafe why the offical Qt site says to call pluginInstance in DllMain? <a href="http://doc.trolltech.com/solutions/4/qtwinmigrate/winmigrate-qt-dll-example.html" rel="nofollow">Qt based Application Extension</a> Maybe I am missing something</p> http://stackoverflow.com/questions/1810390/bypass-keyboard-mouse-input-and-let-sendinput-pass 0 Bypass keyboard,mouse input and let SendInput pass egon 2009-11-27T19:41:43Z 2009-11-28T22:52:40Z <p>I'm making user definable key macros to a program. (Those macros are limited to that program.)</p> <p>I'm using TApplicationEvents to record key messages. And then use SendInput to play them back. But I need to disable mouse and keyboard so it wouldn't interrupt playback.</p> <p>I can't use JournalPlaybackProc and JournalRecordProc because they are subject to UAC, UIPI in Vista and Win7.</p> <p>Is there a easy way to block mouse and keyboard input while still using SendInput. (A way that doesn't need heightened privileges.)</p> <p>Also I need one escape key that stops playback.</p> <p>EDIT: TControl.Perform didn't work because it ignores hotkeys.</p> <p>I thought of using reserved nibble (bits 25-28) in WM_KEY messages, but in the windows documentation it says it's reserved and do not use. What could be the consequences.</p> http://stackoverflow.com/questions/1015393/why-isnt-whmouse-hook-global-anymore 1 Why isn't WH_MOUSE hook global anymore? Valentin Galea 2009-06-18T21:51:07Z 2009-11-28T19:32:15Z <p>I have this global mouse hook setup in a DLL that watches for mouse gestures.</p> <p>Everything works perfectly but with a hook set for WH_MOUSE_LL which is a low-level hook and one that doesn't need to be in an external injectable DLL.</p> <p>Once I switch - to the more suitable one would say - WH_MOUSE mouse hook, everything falls apart. Once I click outside my main application (the one that installs the hook), the hook gets corrupted - ::UnhookWindowsHookEx will fail.</p> <p>I only found <a href="http://www.experts-exchange.com/Programming/Languages/CPP/Q_10095972.html?sfQueryTermInfo=1+mous+wh" rel="nofollow">this guy saying at experts exchange</a>: </p> <blockquote> <p>"No way, at least under Windows XP + SVP2 WH_MOUSE won't go global, you must use WH_MOUSE_LL instead."</p> </blockquote> <p>I setup the hooks correctly: in a DLL using a shared data section, posting and not sending messages from the hook proceduce.</p> <p>Why has this changed? And why is not documented? Anyone encountered this? Thanks!</p> <p>BTW: I've reverse engineered a bit the popular <a href="http://www.tcbmi.com/strokeit/" rel="nofollow">StrokeIt</a> application and it uses a combination of WH_GETMESSAGE and WH_MOUSE hooks and still works on XP/Vista...</p> http://stackoverflow.com/questions/775665/determining-the-parent-process-id-from-c 1 Determining the parent process id from C# Sam Saffron 2009-04-22T04:23:34Z 2009-11-28T18:12:08Z <p>I would like to determine the process id of the parent process for an arbitrary process in Windows. </p> <p>I need this method to work on both x64 and x32. </p> <p>Any ideas / sample code to make this happen. System.Diagnositics.Process does not include this info. </p> <p>I am a bit worried about using the toolhelp apis cause they are 32 bit specific. </p> <p>Related info: </p> <ul> <li><a href="http://www.codeproject.com/KB/threads/ParentPID.aspx" rel="nofollow">C++ implementation</a></li> <li><a href="http://www.csharpfriends.com/Forums/ShowPost.aspx?PostID=27395" rel="nofollow">Some thing I googled</a> (the interop there is not x64 freindly) </li> </ul> <p>The Performance counter solution in <a href="http://msdn.microsoft.com/en-us/netframework/aa569609.aspx" rel="nofollow">the FAQ</a>: (PerformanceCounter("Process", "Creating Process ID", procName);) scares me, cause it does not allow you to enter a process id, instead you specify a process by name so it all can go pear shape when you have multiple children. </p> http://stackoverflow.com/questions/1756263/how-to-change-underlining-color-in-a-rich-edit-control-win32-c 2 How to change underlining color in a Rich Edit control (Win32/C) anno 2009-11-18T14:11:16Z 2009-11-28T12:14:06Z <p>I’m looking for a way to make red squiggly underlining in a Rich Edit control (I’m using version 4.1 with Msftedit.dll). I’m able to produce squiggly underlining with this code :</p> <pre><code>CHARFORMAT2 format; format.cbSize = sizeof(format); format.dwMask = CFM_UNDERLINETYPE; format.bUnderlineType = CFU_UNDERLINEWAVE; SendMessage(hWndEdit,EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM)&amp;format); </code></pre> <p>The MSDN documentation doesn’t specify how to change the color of underlines, just the text (with underlines) and the text background. I’ve found some code that says to use the lower nibble for the underline type (CFU_UNDERLINEWAVE) and the upper one for color. So I’ve tried : </p> <pre><code>format.bUnderlineType = CFU_UNDERLINEWAVE | 0x50; </code></pre> <p>But that doesn't work.</p> <p><strong>UPDATE</strong></p> <p>I've tested this code with version 3.0 (Riched20.dll) and it's working. So the problem lies in 4.1. Was the feature removed or moved elsewhere ?</p> <p>It's not working in version 6 (the dll used by office 2007) also.</p> http://stackoverflow.com/questions/1800250/is-there-a-better-way-to-create-this-game-loop-c-windows 3 Is there a better way to create this game loop? (C++/Windows) Keand64 2009-11-25T22:02:17Z 2009-11-27T17:13:30Z <p>I'm working on a Windows game, and I have this:</p> <pre><code>bool game_cont; LRESULT WINAPI WinProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { switch(msg) { case WM_QUIT: case WM_CLOSE: case WM_DESTROY: game_cont = false; break; } return DefWindowProc(hWnd, msg, wParam, lParam); } int WINAPI WinMain(/*lots of parameters*/) { //tedious initialization //game loop while(game_cont) { //give message to WinProc if(!GameRun()) game_cont = false; } return 0; } </code></pre> <p>and I am wondering if there is a better way to do this (ignoring timers &amp;c. for right now) than to have <code>game_cont</code> be global. In short, I need to be able to exit the while in <code>WinMain</code> from <code>WinProc</code>, so that if the user presses the closes out of the game in a way other that the game's in game menu, the program wont keep running in memory. (As it did when I tested this without the <code>game_cont..</code> statement in <code>WinProc</code>.</p> <p>Oh, and on a side note, <code>GameRun</code> is basically a bool that returns false when the game ends, and true otherwise.</p> http://stackoverflow.com/questions/1361859/how-to-write-test-automation-tools-like-qtp-and-winrunner-using-net 2 How to write test automation tools like QTP and winrunner using .net? raj 2009-09-01T11:11:04Z 2009-11-27T16:50:28Z <p>I would like to know how test automation tools like winrunner, QTP etc work. Whether these tool use any test API provided by windows or they depened on IPC and events. I could not figure out how they work. For me QTP record and play feature seems to be a magic.Any guidance will be highly appreciated?</p> http://stackoverflow.com/questions/1809091/how-to-use-windows-security-descriptor-to-prevent-executing-other-applications 1 How to use Windows Security Descriptor to prevent executing other applications? Gohlool 2009-11-27T14:28:22Z 2009-11-27T14:28:22Z <p>Hi,</p> <p>In one of my recent questions about using CreateDesktop() API call to create a new desktop and execute my own application inside and prevent other applications to be executed in my Desktop someone pointed me to use security descriptors!</p> <p>Is someone here who could tell me how to do that?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1808269/skipping-data-in-winsock 0 Skipping data in winsock? cvb 2009-11-27T11:43:33Z 2009-11-27T12:01:35Z <p>Is it possible to skip a portion of the incoming data on a TCP stream socket, instead of having to read it into a buffer? Preferably, I'm looking for something that also works asynchronously.</p> http://stackoverflow.com/questions/1789320/how-to-find-out-if-a-thread-has-message-queue 0 How to find out if a thread has message queue? Alien01 2009-11-24T10:57:56Z 2009-11-26T14:56:27Z <p>Is there any way to find out from threadId , if a thread has message queue or not?</p> <p>Basically there are some windows api which only work if a thread has message queue.window</p> http://stackoverflow.com/questions/1042705/how-can-i-send-a-command-to-a-running-java-program 1 How can I send a command to a running Java program? DR 2009-06-25T08:02:53Z 2009-11-26T13:42:39Z <p>I have a Java program and I want to send a command from my Win32 application. Normally I'd use <code>WM_COPYDATA</code> but what options do I have with Java?</p> http://stackoverflow.com/questions/343061/how-can-i-get-started-programming-in-c-on-win32 -6 How can I get started programming in C++ on Win32? priyabrata 2008-12-05T06:40:27Z 2009-11-26T02:22:11Z <p>I have the need/desire to learn to program against Win32 in C++. I am a little confused as to what Win32 even is, as I have no experience on the platform. </p> <p>What would you recommend to get me started programming and debugging C++ programs on Win32?</p>