home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / debug / deb / debmisc.h < prev    next >
Text File  |  1997-10-05  |  2KB  |  52 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. #ifndef DEBMISC_H
  14.  
  15.  #define DEBMISC_H
  16.  
  17.  #ifndef DEBDEBUG_H
  18.    #include "DEBDebug.H"
  19.  #endif
  20.  
  21.  #ifndef DEBMAIN_H
  22.    #include "DEBMain.H"
  23.  #endif
  24.  
  25.  //-- function prototypes
  26.  BOOL          StartDebuggee( LPTSTR, HWND );
  27.  BOOL          AttachToDebuggee( DWORD, HWND );
  28.  BOOL CALLBACK EnumProcessListFunc( HWND, LPARAM );
  29.  BOOL          GetDebuggeeFileName( LPTSTR, HWND );
  30.  BOOL          ChooseNewFont( HWND );
  31.  BOOL          ChooseNewBackColor( HWND );
  32.  BOOL          MakeCommonDebugEventString( LPTSTR, LPDEBUG_EVENT);
  33.  HWND          CreateTextButtonBar( HWND, LPINT );
  34.  HWND          CreateIconWindow( HWND, LPCTSTR );
  35.  BOOL          GetPrivateProfileSettings( LPCTSTR, LPCTSTR, PPROFILE );
  36.  BOOL          WritePrivateProfileSettings( LPCTSTR, LPCTSTR, PPROFILE );
  37.  BOOL          WritePrivateProfileInt( LPCTSTR, LPCTSTR, INT, LPCTSTR );
  38.  BOOL          UpdateMenuSettings( HWND );
  39.  BOOL          OutOfMemoryMessageBox( HWND );
  40.  BOOL          MaxDebuggeesMessageBox( HWND );
  41.  BOOL          ErrorMessageBox( LPCTSTR, LPCTSTR, LPCTSTR, INT );
  42.  WNDPROC       SubclassWindow( HWND, WNDPROC );
  43.  BOOL          SendWmSizeMessage( HWND );
  44.  UINT          GetPathFromFullPathName( LPCTSTR, LPTSTR, UINT );
  45.  BOOL          CopyListBoxToClipboard( HWND, LONG );
  46.  LONG          ListBoxInsert( HWND, LPLONG, LPCTSTR );
  47.  LONG          ListBoxPrintF( HWND, LPCTSTR, ... );
  48.  LPTSTR        StringPrintF( LPTSTR, LPCTSTR, ...  );
  49.  BOOL          StringAppendF( LPTSTR, LPCTSTR, ... );
  50.  
  51. #endif // DEBMISC_H
  52.