Anyone know where a good windows constant list lives - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T15:49:30Z http://stackoverflow.com/feeds/question/354329 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/354329/anyone-know-where-a-good-windows-constant-list-lives -4 Anyone know where a good windows constant list lives baash05 2008-12-09T21:41:17Z 2008-12-10T13:00:21Z <p>I'm trying to set an invalid value to -1.. But I don't like magic numbers.. Anyone know where to find a set of common constants. I'm working in VS6 (ish). </p> <p>I'm trying to read a file from across a network, and I need a bad value for the total file size,so I know if I got valid info on it.. 0 is a valid size so I can't use that. </p> <p>Harper Shelby HIT THE NAIL ON THE HEAD.. Just a little thumb. He mentioned the win32 constants.. which is exactly what I was thinking about.. Now to find a link :)</p> http://stackoverflow.com/questions/354329/anyone-know-where-a-good-windows-constant-list-lives/354343#354343 2 Answer by Steven A. Lowe for Anyone know where a good windows constant list lives Steven A. Lowe 2008-12-09T21:46:13Z 2008-12-09T22:08:34Z <pre><code>#define BAD_VALUE -1 </code></pre> <p>EDIT: the original question had no context. The revised question indicates you want an invalid file size and are thus looking for the win32 constants. Look at <a href="http://en.wikipedia.org/wiki/Windows.h" rel="nofollow">windows.h</a> i think the constant you seek may be in <a href="http://en.wikipedia.org/wiki/Windows.h" rel="nofollow">windows.h</a> or one of its sub-includes. grep your windows include directory ;-)</p> http://stackoverflow.com/questions/354329/anyone-know-where-a-good-windows-constant-list-lives/354347#354347 2 Answer by Harper Shelby for Anyone know where a good windows constant list lives Harper Shelby 2008-12-09T21:46:55Z 2008-12-09T21:46:55Z <p>If -1 is an invalid value for a return value in your system, you should define it internally:</p> <pre><code>const int INVALID_FOO = -1 </code></pre> <p>unless C compatibility is needed, in which case</p> <pre><code>#define INVALID_FOO -1 </code></pre> <p>would be preferred. If it's a standard MFC or Windows resource, use INVALID_HANDLE or one of the other Win32-defined constants.</p> http://stackoverflow.com/questions/354329/anyone-know-where-a-good-windows-constant-list-lives/354348#354348 -1 Answer by James Curran for Anyone know where a good windows constant list lives James Curran 2008-12-09T21:47:05Z 2008-12-09T21:47:05Z <p>It's generally accepted the 0 and 1 (positive &amp; negative) are OK to use directly.</p> <p>In fact, it'll probably make you code even more confusing to use a variable instead.</p> <p>Update: OK, you updated your question after I wrote my answer. If you are using "-1" in an arithmetic way, then just "-1" is fine. If you are returning a error code (and the code just happens to be -1) then you should use a const.</p> <pre><code> const int INVALID_VALUE = -1; </code></pre> http://stackoverflow.com/questions/354329/anyone-know-where-a-good-windows-constant-list-lives/354648#354648 1 Answer by Arkadiy for Anyone know where a good windows constant list lives Arkadiy 2008-12-09T23:46:19Z 2008-12-09T23:46:19Z <p>You want to use your own magic number -1 disguised as a Windows constant. This is very misleading.</p> <p>Suppose I happen to know that INVALID_HANDLE is 0. Is it OK to initialize my pointers with INVALID_HANDLE?</p> <pre><code>char *myMessage = INVALID_HANDLE; </code></pre> <p>How does this strike you?</p> http://stackoverflow.com/questions/354329/anyone-know-where-a-good-windows-constant-list-lives/354659#354659 -1 Answer by strager for Anyone know where a good windows constant list lives strager 2008-12-09T23:53:53Z 2008-12-09T23:53:53Z <pre><code>If bytes_read &lt; 0 // error EndIf </code></pre> http://stackoverflow.com/questions/354329/anyone-know-where-a-good-windows-constant-list-lives/354716#354716 1 Answer by jmucchiello for Anyone know where a good windows constant list lives jmucchiello 2008-12-10T00:19:41Z 2008-12-10T00:19:41Z <p>In VS, Create a new windows console application project. Go into project settings and turn on browse support. Create a C++ file and add it to the project. Type:</p> <pre><code>#include &lt;windows.h&gt; void main(void) {} </code></pre> <p>into the file. Compile it. Now type INVALID_FILE_SIZE into the file. Right click on it and goto definition of INVALID_FILE_SIZE. VS will open one of the many windows header files full of defined values. Enjoy.</p> http://stackoverflow.com/questions/354329/anyone-know-where-a-good-windows-constant-list-lives/355076#355076 1 Answer by Lodle for Anyone know where a good windows constant list lives Lodle 2008-12-10T04:27:21Z 2008-12-10T13:00:21Z <p>First thing is you should be using an unsigned int for file size as a file size is never negative. Now an invalid file size is normally the max int so in the case of using a 32 bit unsigned int it would be 0xFFFFFFFF</p> <p>i.e.</p> <pre><code>const unsigned int INVALID_FILESIZE = 0xFFFFFFFF; </code></pre> <p>Also if this is on windows, windows.h defines invalid file size all ready (INVALID_FILE_SIZE)</p>