Tagged Questions
3
votes
1answer
33 views
Win API function for modifying file permissions
I'm searching for a way to modify the file permissions of a file in Windows 7 using C.
For example: I would like to add read permissions for C:\a.txt for the user A,
or remove write permissions from ...
-4
votes
0answers
27 views
Win32 console programming tutorials [closed]
I have found parts 1 to 4 of adrianxw Win32 console programming tutorial at a chinese site http://blog.baozishan.in/?p=871, without the images
the site of the author http://www.adrianxw.dk seems to ...
1
vote
1answer
24 views
c compiler commands for generating a winexe
how do i instruct the C compiler (gcc &| cc) to make a "Windows executable" in command line? just like csc /t:winexe filename.cs in c#?
my goal is to create a GUI(winapi) based app without the ...
3
votes
1answer
31 views
Why does GetOverlappedResult need the file handle?
Why does GetOverlappedResult need a file handle?
It seems like WaitForSingleObject(overlapped->hEvent) should be enough to wait on the event so that the overlapped I/O finishes, so what does ...
2
votes
2answers
57 views
Why is the callback given to ReadFileEx() not receiving the correct OVERLAPPED structure? [closed]
For some reason, my callback isn't receiving the address of the correct OVERLAPPED structure after a call to ReadFileEx. What can cause this?
Update -- example:
#include <stdio.h>
#include ...
0
votes
1answer
26 views
NtFsControlFile seems to fails on files < 728 bytes when compressed
I was using the SDelete application provided by System Internals to delete files in a secure way but came across a issue where some files where being left. I managed to get the SDelete source code and ...
0
votes
2answers
61 views
Continue executing another thread
I'm currently playing with WinAPI and I have proceeded to threads. My program has n threads which work with each other. There is one main thread, which writes some data to specific memory location and ...
0
votes
3answers
62 views
How to eat keys in WM_KEYDOWN
Im handling the WM_KEYDOWN message in an edit box.
I am handling a bunch of keys, but for certain keys (eg. tab) i'd like to prevent the displayable character from being appended to the editbox.
...
1
vote
0answers
56 views
Very fast COM port read
I'm reading from a COM port at a high speed (3,686,400 b/sec). In order to accomplish this I have to read with 512-byte blocks and significantly increase my timeout (to 1000) so that I'll get a whole ...
1
vote
2answers
160 views
SetWindowLongPtr returning ERROR_ACCESS_DENIED
I am still struggling with hooks.
My goal is:
Set a hook in notepad.exe
Subclass it (my final goal is to subclass the Edit class and show the content in my own window)
Disclaimer: I know there ...
0
votes
1answer
54 views
Child Windows that does not occupy client area
In the Win32 API (pure win32), The Menu bar does not occupy any area from the client area of the window. Which means the origin coordinates of the client area is right under the menu bar to the left.
...
1
vote
1answer
30 views
WinAPI using SetfilePointer to test EOF
Hi guys If I want to test EOF using
SetFilePointer(fi1, 0, NULL, FILE_CURRENT) != INVALID_SET_FILE_POINTER
or ?
SetFilePointer(fi1, 1, NULL, FILE_CURRENT) != INVALID_SET_FILE_POINTER
MSDN ...
1
vote
1answer
65 views
ProcessID confusion
I'm confused.
Why do notepad.exe have three different process ID's?
1)Spy++ says 000000A48 (eh?)
2)Taskmanager says: 2632
3)GetWindowThreadProcessId says: 1744
I guess that 2632 is the right ...
-3
votes
0answers
67 views
Executing of batch file [duplicate]
I want to execute one command using batch file but non of below code is working where Please tell me where I am going wrong,
Following are codes for executing batch file,
First trial:-
...
0
votes
2answers
65 views
How to show more than 50 push buttons on a window?
I have created a Window and then, created 50 buttons on this Window but I can only see 10 buttons on my window. Rest are out of view since I am not able to scroll the window down.
I have added auto ...
0
votes
3answers
31 views
RegEnumValue and REG_MULTI_SZ type
MSDN says about string data got by RegEnumValue that
If the data has the REG_SZ, REG_MULTI_SZ or REG_EXPAND_SZ type, the
string may not have been stored with the proper null-terminating
...
0
votes
1answer
49 views
Change main method in Code::Blocks?
I switched from main to WinMain and Code::Blocks is searching for main. How do I fix this? This is probably a stupid question but I can't find it online.
UPDATE @JBL
#include <iostream>
...
0
votes
2answers
36 views
Handle postthreadmessage() inside a thread which is blocking in while(1) loop or use “Event Driven Sockets”
I have a single server multiple client udp application. There is a single thread (thread#1) with a single socket (socket#1) to receive data from client#1 continuously. The task of this receiving ...
0
votes
0answers
32 views
How to add automatic scrolling bar to a window when number of buttons exceeds window size. (winapi)
I have created a window and added almost 50 buttons to it. But the problem is that I can only see a few of those buttons as my window does not scroll up/down or left/right to show me the remaining ...
1
vote
2answers
84 views
Why does RegSetValueEx work even when I break the rule about accounting for NUL termination in the length?
I've got a simple program that adds calc.exe to startup:
#include <windows.h>
#include <tchar.h>
int main(){
_tprintf(TEXT("Adding calc.exe to ...
1
vote
2answers
41 views
Double-buffering *framework* in C and Windows GDI
Background: My client has a very extensive proprietary forms library which is effectively implemented in C (actually, it's a proprietary object-oriented language that basically wraps Windows controls ...
2
votes
2answers
123 views
Character array reuse
I'm writing a Win32 console application in Visual Studio 2010.
Consider one function that take two char* as parameters.
Following is prototype of function:
void WriteApplicationFile(char ...
-1
votes
1answer
79 views
Blocking sockets v/s non-blocking sockets in multi-threaded single server multiple client application [closed]
I had been working on a Server Client aplication where Server is going to service(sendto + receivefrom)'x' number of Clients at a time. For this purpose, I have created 'x' number of threads on Server ...
0
votes
1answer
43 views
remove button from a window
Using c++, I have created a window with a "WNDCLASS" structure. I have then used "CreateWindow" again with the system class "button" and set the parent handle to the handle of the window already ...
1
vote
1answer
46 views
How network event FD_WRITE is generated when using Event Driven Sockets?
I am working on newtwork event based socket application.
When client has sent some data and there is something to be read on the socket, FD_READ network event is generated.
Now according to my ...
1
vote
1answer
31 views
fread() fails after reading complete contents of text file
I have written this code which reads contents of text file into a buffer and sends the buffer over the socket until end of file.
The code works fine and after complete file is sent to over the ...
0
votes
2answers
55 views
Read a text file line by line and save each line in the buffer irrespective of data type and length of each line
I want to read one line of the text file, save it to a buffer, send the buffer over a udp socket and then go and read the second line and so on..
So far, since I knew the data type of the text to be ...
0
votes
1answer
49 views
Wait for all child thread to finish (in C)
Code first
while(running)
{
memset(&tcp_client, 0, tcp_client_len);
FD_ZERO(&readFDs);
FD_SET(tcp_server_s, &readFDs);
tv.tv_sec = 1;
if(select(0, &readFDs, NULL, ...
0
votes
1answer
50 views
Threading in C with CreateThread()
I am very much a novice to C, and I am trying to make a program to run MIDI sequences, and basically, I have two functions, both running a different MIDI pattern, and I need them to run in parallel. ...
0
votes
1answer
51 views
fopen() opens the text file successfully for sometime and fails after a specific time
I am trying to send a text file at a socket after every 10ms. The code works fine and keeps on sending the text file over the socket after an interval of 10ms. But after some period of time (like ...
0
votes
0answers
67 views
“Debug Assertion Failed. Expression: (_osfile(fh) & fopen)” error and Fatal Error in visual studio 2008
My following code is compiled successfully and runs perfectly for sometime handling 40 clients but after sometime, it gives an error "Debug Assertiion Failed expression: (_osfile(fh) & fopen)".
I ...
3
votes
4answers
68 views
Windows thread scheduler is unfair?
Sometimes, when I run this simple program
#include <Windows.h>
DWORD WINAPI ThreadStart(LPVOID)
{
for (;;) { }
return 0;
}
int _tmain()
{
SetPriorityClass(GetCurrentProcess(), ...
0
votes
1answer
39 views
Run-Time Check Failure # 2 - Stack around variable 'thread no' was corrupted
My following code gives an error "Run-Time Check Failure # 2 - Stack around variable 'thread no' was corrupted." if I add a "break" inside my if statement. I have also hghlighted this "break" inside ...
0
votes
1answer
78 views
Unable to copy multiline text file to a buffer
I am trying to copy a text file to a buffer in order to send it over the socket. As soon as the text file does not have any newlines (or \n), the file is successfully copied into buffer. But, ...
0
votes
1answer
43 views
How to get the locale name for my thread?
Say, I can set the locale from my C program using _create_locale as such:
localeUS = _create_locale(LC_ALL, "English_United States.1252");
But what I need is the opposite, i.e. to retrieve the ...
0
votes
1answer
51 views
Win32api passing struct to create thread [duplicate]
i'm trying to get this struct into my thread, however i'm getting trash in it.
struct i'm using:
typedef struct {
HWND hWnd;
int cntrlid;
TCHAR text[BUFF];
}parametros;
in the message ...
3
votes
1answer
66 views
CPU Usage 100% when creating 3 threads and using WSAWaitForMultipleEvents() and WSAEnumNetworkEvents()
I have created 3 threads each thread has one socket each.
Inside each thread, socket is made "Event Driven" and whenever data becomes available for reading, an event is generated.
The code works ...
2
votes
1answer
47 views
Unable to create multiple threads using for loop
I am trying to create 3 threads using a for loop. Following is my code snippet:
DWORD WINAPI ThreadProc0(LPVOID param)
{
return 0;
}
DWORD WINAPI ThreadProc1(LPVOID param)
{
return 0;
}
DWORD ...
0
votes
2answers
39 views
Translate message value to macro? [duplicate]
I need to translate a value to its corresponding message macro, such as 0x100 to WM_KEYDOWN.
Is there any exists open source implementation of this?
1
vote
2answers
50 views
Access a spawned process's TIB through FS register?
I'd like to access a spawned process's TIB (I created the process with CreateProcessW successfully).
I have obtained a pointer to the spawned process's TIB through:
GetThreadContext (with ...
1
vote
2answers
54 views
Passing pointer to SOCKADDR_IN and SOCKET in a function
I have a function createServerSocket(). This function can be accessed by multiple threads for creating their sockets.
I want each thread to pass three arguments, a socketIdentifier, *sockaddr_in* ...
2
votes
2answers
94 views
HMAC-MD5 with CryptoApi
I have adopted the SHA1 HMAC example from Microsoft's website and modified it according to this stack-overflow post and some other suggestions on the Internet, however I am unable to produce correct ...
0
votes
4answers
108 views
Can two Threads use same Thread Procedure?
Is it possible for two threads to use a single function "ThreadProc" as its thread procedure when CreateThread() is used?
HANDLE thread1= CreateThread( NULL, //Choose default security
...
-4
votes
1answer
77 views
How to create multiplethreads each with different ThreadProc() function using CreateThread()
I have successfully created a single thread using CreateThread().
Now I want to create 'n' number of threads but each with a different ThreadProc().
I have tried the following code but using it, 'n' ...
0
votes
1answer
80 views
Win32 - Appending text to an Edit Control
Trying to append text to an edit control inside a dialog box. I can't get _tcscat_s to append correctly. It crashes and says something about the buffer being too small or something about a null ...
1
vote
1answer
38 views
Multiple CreateFileA calls return same File Handle
I have a routine to open COM Ports using CreateFileA.
The function is created as a DLL and I have an EXE(using VS2010) to make calls to open different COM Ports.
An observation is that if I use the ...
1
vote
2answers
52 views
Windows socket seems to be Non Duplex
I'm writing a client-server program, where the client is C++/winapi and the server is C#/.net.
the client have a loop where it reads from server (and may block the calling thread [denote t1] , which ...
1
vote
1answer
28 views
Share permission for read file in child proccess without close the handle, using FILE_FLAG_DELETE_ON_CLOSE
I' m creating a handle to file for delete on close, with permission for read.
I need without close the handle (because it will deleted the file) create a process that can read the file.
This is my ...
0
votes
1answer
82 views
Using one socket for send() and receive()? [closed]
I have developed a udp application in which a single server is able to handle 'x' number of clients.
Inside my server, there is a primary thread keeps on receiving requests/data continuously from the ...
1
vote
2answers
46 views
inter process comunication (IPC) in C [closed]
I am looking for an inter-process communication facility that can be used between languages on the same operating system(Windows7 for ex).I need to share some addresses(data) between two processes(one ...



