Tagged Questions
3
votes
2answers
122 views
Notify Icon Receives WM_LBUTTONDBLCLK But Not WM_CONTEXTMENU
I added a notification icon to my dialog based application, and it received WM_LBUTTONDBLCLK when the icon is double clicked on, but it is not receiving WM_CONTEXTMENU when the icon is right clicked ...
3
votes
1answer
316 views
What happened to WINVER and _WIN32_WINNT guards in windows.h?
In Using the Windows Headers, Microsoft claim that _WIN32_WINNT and NTDDI_VERSION can be used to prevent defining API functions for newer versions of Windows. However, this does not seem to be ...
3
votes
1answer
180 views
Why does the token returned by LogonUser() in Win x64 not belong to LOCAL group?
I have a piece of code that calls LogonUser() followed by CreateProcessAsUser(). In Win32, the resulting process belongs to a user (say, TESTDOMAIN\user1) who belongs to the LOCAL group. However, in ...
2
votes
4answers
86 views
Understanding a #define directive
Looking at the Windows SDK, I found this #define directive for MAKEINTRESOURCEW:
#define MAKEINTRESOURCEW(i) ((LPWSTR)((ULONG_PTR)((WORD)(i))))
Can someone explain to me what the heck that means? ...
1
vote
2answers
59 views
How do I compile a Window API program using cl?
I am trying to compile a simple C Windows API program using the Windows SDK Command Prompt.
Here an excerpt from the program:
#include <Windows.h>
int WINAPI WinMain(HINSTANCE hInstance, ...
1
vote
1answer
193 views
Get command line string of 64-bit process from 32-bit process
The code below works for me well to get command line string of 32-bit process from a 32-bit app, 64-bit process from a 64-bit app and 32-bit process from 64-bit app. This will break if I try to use ...
1
vote
2answers
138 views
get handle in thread function
whole code download: http://tunps.com/tmp/UsbAutoCopy.zip
here is the WinMain :
int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int ...
1
vote
2answers
154 views
How do I detect when the sound has finished playing when using PlaySound in Win32 SDK?
I am using the PlaySound function from the Win32 SDK to play a wave sound file. Currently, I have the following line of code:
PlaySound(szFile,NULL,SND_FILENAME );
But now I want to know, how I can ...
1
vote
4answers
388 views
Suitable alternative to CryptEncrypt
We have a situation in our product where for a long time some data has been stored in the application's database as SQL string (choice of MS SQL server or sybase SQL anywhere) which was encrypted via ...
0
votes
0answers
24 views
Cannot restart RPC server (windows sdk)
I use the following commands to stop the RPC server
RPC_STATUS status;
while(RpcMgmtWaitServerListen() != RPC_S_NOT_LISTENING)
status = RpcMgmtStopServerListening(NULL);
RPC_BINDING_VECTOR ...
0
votes
2answers
110 views
Read and set Group Policy settings from C++ program
I have a standalone Windows-NT based machine (not connected to any network) and I want to be able to read and later set the Group Policy settings via a C++ program.
Here's what I would do manually. ...
0
votes
2answers
124 views
WinAPI NetUserGetInfo() fails with NERR_UserNotFound error code on Active Directory domain
I'm running the following piece of code from a local service application. The purpose is to obtain the path to a user's profile before calling LoadUserProfile() to load that user's profile before ...
0
votes
0answers
196 views
build win32 apps in eclipse CDT
I'm trying to build a simple file in eclipse but I've failed
I'm using Mingw
i've installd windows sdk
for example the app in this tut compiles weel with msbuild but not in eclipse
...
0
votes
2answers
129 views
How can I use a resource file (*.rc) to style a dialog-based application
How can I use a resource file (*.rc) to style a dialog-based application?
I can use CreateWindow or CreateWindowEx to create the main window of an application. And some of the arguments of ...
0
votes
1answer
190 views
SetWindowText show Unrecognizable Code from InternetReadFile()
i want to convert an utf-8 encoded web page source code downloaded using InternetReadFile to utf-16 which windows can recognize.
here is the code snippet:
HINTERNET hConnect,hSession;
char *szBuffer ...
0
votes
1answer
1k views
How can i determine the version of the Windows SDK installed on my computer?
I've very recently decided to teach myself c++ and win32 programming after learning vb.net, and i've got a very simple question: How can I determine what version of the Windows SDK is installed on my ...
0
votes
1answer
310 views
Flags returned by OSVERSIONINFOEX.wSuiteMask
Does anybody know what the following constants (defined in WinNT.h) mean?
#define VER_SUITE_COMMUNICATIONS 0x00000008
#define VER_SUITE_EMBEDDED_RESTRICTED 0x00000800
#define ...