Andrei's blog
sharing coding bits
Wednesday, December 07, 2005
Problems
›
here I will put different little exercices I find. 6th grade problem: find all integral numbers which after substraction to 9999 give the sa...
7 comments:
Saturday, December 03, 2005
SuspendThread
›
as the msdn says SuspendThread is for debugging purposes and should not be used. it may be tempting to use it to pause a worker thread for e...
Thursday, November 10, 2005
stuff to do on DLL_PROCESS_ATTACH
›
it is guaranteed you can call any Kernel32.dll function on the DLL_PROCESS_ATTACH. Calling any other function from other library is not ok, ...
using std lib functions between dlls
›
it is OK to have functions with variables of class vector or other std lib class, and call these functions between different DLLs executable...
oversee CloseHandle
›
there are many WinAPI functions which create and return a HANDLE object, like CreateThread, CreateFile. in windows header file, a HANDLE is ...
Monday, November 07, 2005
multithreading issue
›
ok, here is my task: i have a dialog (main thread) and i have a worker thread running which updates a progressbar on the GUI. when i press t...
shell api power
›
i've discovered some months ago that the shell libary shlwapi.dll has, beside some well known functions like SHBrowseForFolder also some...
‹
›
Home
View web version