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.

33 lines
725 B

  1. extern HWND g_DevPropDlg;
  2. extern HWND g_NewDevDlg;
  3. #define DISPLAY_NEWDEV_DLG(param) \
  4. DialogBoxParam(g_Instance, MAKEINTRESOURCE(IDD_INSTALLDEV), g_SoftPCIMainWnd, \
  5. SoftPCI_NewDevDlgProc, (LPARAM)param);
  6. /*
  7. #define DISPLAY_PROPERTIES_DLG(param) \
  8. DialogBoxParam(g_Instance, MAKEINTRESOURCE(IDD_DEVPROP), NULL, \
  9. SoftPCI_DevicePropDlgProc, (LPARAM)param);
  10. INT_PTR
  11. CALLBACK
  12. SoftPCI_DevicePropDlgProc(
  13. IN HWND Dlg,
  14. IN UINT Msg,
  15. IN WPARAM wParam,
  16. IN LPARAM lParam
  17. );*/
  18. INT_PTR
  19. CALLBACK
  20. SoftPCI_NewDevDlgProc(
  21. IN HWND Dlg,
  22. IN UINT Msg,
  23. IN WPARAM wParam,
  24. IN LPARAM lParam
  25. );