Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
593 B

  1. #ifndef _WNDPROCS_H_
  2. #define _WNDPROCS_H_
  3. #define CAT_CHECK_STATE_UNSEL 0
  4. #define CAT_CHECK_STATE_SEL 1
  5. #define CAT_CHECK_STATE_CHECK 2
  6. typedef struct tagSubData
  7. {
  8. WNDPROC proc;
  9. list<HWND> list;
  10. } SUBDATA, *PSUBDATA;
  11. void OnMsg_VScroll( HWND hwnd, WPARAM wParam );
  12. LRESULT CALLBACK RestrictAvThroughputWndProc( HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam );
  13. LRESULT CALLBACK CatListWndProc( HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam );
  14. LRESULT CALLBACK wndProcForCheckTiedToEdit( HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam );
  15. #endif