<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
The correct answer to my problem is:<br>
<br>
#include "guiddefs.h"<br>
<br>
which I found only via much searching.<br>
<br>
As for why the correct headers are not included, the answer to that is:<br>
<br>
1. Typical, usual sloppy coding practices.<br>
<br>
2. Lack of attention to detail and code organization.<br>
<br>
3. The Windows developers probably used some kind of precompiled
headers which makes up for the lack of the correct includes in the
source files.<br>
<br>
4. The source files do include the right headers, but the Windows
headers don't work on Mac OS X and hence I have to substitute my own.<br>
<br>
Mike<br>
<br>
Francois Gouget wrote:
<blockquote cite="midPine.LNX.4.64.0701171001320.3801@amboise.dolphin"
 type="cite">
  <pre wrap="">On Tue, 16 Jan 2007, Mike wrote:
[...]
  </pre>
  <blockquote type="cite">
    <pre wrap="">My big question is: when I add the Wine headers to my project, it seems that
every datatype in the wine headers is undefined. I noticed that most wine
headers don't have any #includes in them.
    </pre>
  </blockquote>
  <pre wrap=""><!---->
Normally the Wine headers have the same set of #include directives as 
the PSDK headers. If that's not the case then it's a bug. But yes, the 
PSDK headers often don't include each other.


  </pre>
  <blockquote type="cite">
    <pre wrap="">is there some precompiled or metaheader that I should be including in all of
the wine files in order to get the compiler to see the data types?
    </pre>
  </blockquote>
  <pre wrap=""><!---->
You're probably thinking about 'windows.h'. This is the one header 
included by most Windows applications. However it includes most 
everything which may be causing problems too.

But since you're porting Windows code, how come it does not already 
include the right PSDK headers?

  </pre>
</blockquote>
<br>
</body>
</html>