... Because the language Standard requires it. ... Your book is wrong then. ... The book and your last two examples are wrong. main should return int always,...
I have a suggestion if you have enough ram( 512 or 1 gb) -> download a vmplayer -> run an linux operating system on it (Ubuntu is good one, u will get in site...
... Most of us have enough trouble learning one thing at a time let alone two things. In your case you are recommending learning at _least_ three things at...
Dear members, I'm trying a very simple program to test DLLs and their way to export entry points, and I'm experiencing a strange problem . I link the Dll ...
... <snip> What does Dependency Walker (Depends.exe) tell you? Is there an undecorated, non-name-mangled exported function name? Are you not locating the right...
there is no intention of offending somebody,those where the way i learned, so i feel confident in suggesting that idea.things may look very tough,but it could...
I would like to point out some mistakes ->You have given the path using -L option, but you have not mentioned the library to be linked using -l option. ->The...
Hi Thomas, thank you for answering When I use Dependency Walker , it says that two symbols are exported ... well , I should say , I see in the right window,...
I am developing a program in Visual C++ 2008 (free download version). I am trying to write into the "case WM_KEYDOWN: case WM_SYSKEYDOWN: case WM_KEYUP: case...
... Yeah, that's C++ name mangling/decoration. Basically says how many parameters the function takes (in this case, probably three). ... The .def file is...
... Have you looked at using resource-based keyboard accelerators? -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus 1.1 Get on task....
... Could you explain it in detail ? ... exported ... the ... have ... involved. ... in effect I didn't try it .... ... as ... No , I tried it using the...
Hi, I am with a problem reading data from Oracle database, some words have accent, but when i read the data it returns a wrong word. I am using OCCI libs with...
... That sounds as if you have a code page problem. Unfortunately I don't know OCI or OCCI well enough, but you probably have to set up the OCCI connection...
I solved the problem reading a doc from oracle OCCI. I need to set de charser when i am creating the environment createEnvironment("WE8ISO8859P1","AL32UTF8"); ...
... Sure. Without a .def file, the compiler does name-mangling. VC++ tends to stick @ plus a multiple of four after each function name to indicate how big...
Hi, I have created a drop "down tree control" that works similar to "drop down list" control. Everything works fine, except that i just wanted to add another...
Hi.. another problem.. and i really don't know whats wrong :-| My QA found out that the drop down tree behaves a bit wierd in XP Classic theme. The problem is...
These queries arose when I was updating a C++ program that handles files. From early computers in the 1960's, text files have been easy to understand: a long...
... <snip> Look under www.unicode.org ; the site is quite huge but has all the information you're going to need. One shortcut here: mixing 8-bit and 16-bit...
... It's the alpha channel, which is the transparency of the image (so you have 24 bits of color plus the alpha channel). 32 bit images have been around since...
... The two bytes are called the Byte Order Mark (BOM) and are not required if the parser knows it is a Unicode document. MyProBB, although written in PHP, has...
... It is the Alpha level with a valid range of 0-255. Actually, 32-bit images have been in use since Windows XP. That's how you get all those nifty...
Hi Frnds, I strucked up with some very basic and simple prog . Could anyone of you please help me out. I need to write a code in such a way that , The code...
... That requires you to first tell us what OS you work with, what compiler, what IDE. Only then we can give you any educated advice. For example, if you work...
Probably u can use a simple function SLEEP() which takes int milisecond as an input parameter. this function is implemented in standard libs.... ... threaded ...
... I'd use SIGALRM and alarm() on Linux. No need for threading. -- Brett ... "In the rhythm of music a secret is hidden; If I were to divulge it, it would...
... Windows: Sleep(10000); Linux/POSIX: sleep(10); -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus 1.1 Get on task. Stay on task. ...