Anyone know where a good windows constant list lives - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T15:49:30Zhttp://stackoverflow.com/feeds/question/354329http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/354329/anyone-know-where-a-good-windows-constant-list-lives-4Anyone know where a good windows constant list livesbaash052008-12-09T21:41:17Z2008-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#3543432Answer by Steven A. Lowe for Anyone know where a good windows constant list livesSteven A. Lowe2008-12-09T21:46:13Z2008-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#3543472Answer by Harper Shelby for Anyone know where a good windows constant list livesHarper Shelby2008-12-09T21:46:55Z2008-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-1Answer by James Curran for Anyone know where a good windows constant list livesJames Curran2008-12-09T21:47:05Z2008-12-09T21:47:05Z<p>It's generally accepted the 0 and 1 (positive & 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#3546481Answer by Arkadiy for Anyone know where a good windows constant list livesArkadiy2008-12-09T23:46:19Z2008-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-1Answer by strager for Anyone know where a good windows constant list livesstrager2008-12-09T23:53:53Z2008-12-09T23:53:53Z<pre><code>If bytes_read < 0
// error
EndIf
</code></pre>
http://stackoverflow.com/questions/354329/anyone-know-where-a-good-windows-constant-list-lives/354716#3547161Answer by jmucchiello for Anyone know where a good windows constant list livesjmucchiello2008-12-10T00:19:41Z2008-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 <windows.h>
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#3550761Answer by Lodle for Anyone know where a good windows constant list livesLodle2008-12-10T04:27:21Z2008-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>