home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / bsscdemo / listdem2 / listdem2.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-25  |  1.5 KB  |  52 lines

  1. /*
  2.    Copyright (c) 1993 by Barking Spider Software Inc.  All rights reserved
  3.                                                                            
  4.    Filename...:  listdem2.h
  5.    
  6.    Version....:  1.0
  7.    
  8.    Language...:  Microsoft C/C++ 7.0
  9.    
  10.    Model......:  Small
  11.    
  12.    Environment:  Microsoft Windows 3.1
  13.                                                                            
  14.    Description:  Header for list control demo 2
  15.                                                                            
  16.    Notes......:  
  17.                                                                            
  18.    History....:
  19.                                                                               
  20.    Author.....:  Peter J. Kaufman
  21. */
  22.  
  23. #define IDR_LISTDEMO_ICON    290
  24.  
  25. /* Dialog IDs */
  26.    
  27. #define IDD_DIALOG          100
  28. #define IDC_LIST            101
  29.  
  30. /* Menu IDs */
  31.  
  32. #define IDM_LIST_DIALOG  10
  33. #define IDM_EXIT         11
  34.  
  35. /* PROTOTYPES */
  36.  
  37. long FAR PASCAL _export ListDemo2WndProc ( HWND hwnd,
  38.                                            UINT message,
  39.                                            UINT wParam,
  40.                                            LONG lParam);
  41.  
  42. BOOL FAR PASCAL _export ListDlgProc (HWND hwnd,
  43.                                      UINT message,
  44.                                      UINT wParam,
  45.                                      LONG lParam) ;
  46.  
  47. WORD HandleAddChildrenError( HWND hwnd, WORD wErrCode);
  48.  
  49.  
  50. /*--------------------------------- EOF -----------------------------------*/
  51.  
  52.