home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sdktools / winnt / ddespy / globals.h < prev    next >
C/C++ Source or Header  |  1997-10-05  |  1KB  |  38 lines

  1.  
  2. /******************************************************************************\
  3. *       This is a part of the Microsoft Source Code Samples. 
  4. *       Copyright (C) 1993-1997 Microsoft Corporation.
  5. *       All rights reserved. 
  6. *       This source code is only intended as a supplement to 
  7. *       Microsoft Development Tools and/or WinHelp documentation.
  8. *       See these sources for detailed information regarding the 
  9. *       Microsoft samples programs.
  10. \******************************************************************************/
  11.  
  12. /*
  13.  * GLOBALS.H
  14.  *
  15.  * Header file for DDESPY Global prototypes and Variables
  16.  */
  17.  
  18. extern HINSTANCE hInst;
  19. extern HICON hIcon;
  20. extern HWND hWndString;
  21. extern INT fhOutput;
  22. extern OFSTRUCT ofsOpen;
  23. extern CHAR OpenName[MAX_FNAME + 1];
  24. extern CHAR TBuf[BUFFER_SIZE];
  25. extern CHAR TBuf2[BUFFER_SIZE];
  26. extern CHAR szNULL[];
  27. extern PSTR apszResources[IDS_LAST];
  28. extern PFNCALLBACK pfnDdeCallback;
  29. extern HWND hwndTrack[IT_COUNT];
  30. extern LPTSTR TrackTitle[IT_COUNT];
  31. extern LPTSTR TrackHeading[IT_COUNT];
  32.  
  33. extern struct {                            /* profile data structure */
  34.     BOOL fOutput[IO_COUNT];
  35.     BOOL fFilter[IF_COUNT];
  36.     BOOL fTrack[IT_COUNT];
  37. } pro;
  38.