NO

Author Topic: LPUNKNOWN  (Read 5070 times)

Offline TimoVJL

  • Global Moderator
  • Member
  • *****
  • Posts: 2091
LPUNKNOWN
« on: November 10, 2004, 08:22:09 AM »
If you get this with WIN32_LEAN_AND_MEAN, and you are not using OLE:
commdlg.h(572): error #2001: Syntax error; found 'LPUNKNOWN' expecting '}'.

put this before commdlg.h and enjoy fast compiling again.

#ifndef LPUNKNOWN
typedef void* LPUNKNOWN;
#endif
#include <commdlg.h>
May the source be with you