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.

32 lines
1.3 KiB

  1. // registered window messages global variables, defined in mlui.cpp
  2. extern UINT g_ML_GETTEXT,
  3. g_ML_GETTEXTLENGTH,
  4. g_ML_SETTEXT;
  5. extern UINT g_ML_LB_ADDSTRING,
  6. g_ML_LB_FINDSTRING,
  7. g_ML_LB_FINDSTRINGEXACT,
  8. g_ML_LB_GETTEXT,
  9. g_ML_LB_GETTEXTLEN,
  10. g_ML_LB_INSERTSTRING,
  11. g_ML_LB_SELECTSTRING;
  12. extern UINT g_ML_CB_ADDSTRING,
  13. g_ML_CB_FINDSTRING,
  14. g_ML_CB_FINDSTRINGEXACT,
  15. g_ML_CB_GETLBTEXT,
  16. g_ML_CB_GETLBTEXTLEN,
  17. g_ML_CB_INSERTSTRING,
  18. g_ML_CB_SELECTSTRING;
  19. BOOL fDoMungeUI(HINSTANCE hinst);
  20. INT_PTR MLDialogBoxIndirectParamI(HINSTANCE hInstance, LPCDLGTEMPLATE lpTemplate, HWND hwndParent, DLGPROC lpDialogFunc, LPARAM dwInitParam);
  21. INT_PTR MLDialogBoxParamI(HINSTANCE hInstance, LPCWSTR lpTemplateName, HWND hwndParent, DLGPROC lpDialogFunc, LPARAM dwInitParam);
  22. HWND MLCreateDialogIndirectParamI(HINSTANCE hInstance, LPCDLGTEMPLATE lpTemplate, HWND hwndParent, DLGPROC lpDialogFunc, LPARAM dwInitParam);
  23. HWND MLCreateDialogParamI(HINSTANCE hInstance, LPCWSTR lpTemplateName, HWND hwndParent, DLGPROC lpDialogFunc, LPARAM dwInitParam);
  24. BOOL MLIsEnabled(HWND hwnd);
  25. int MLGetControlTextI(HWND hWnd, LPCWSTR lpString, int nMaxCount);
  26. BOOL MLSetControlTextI(HWND hWnd, LPCWSTR lpString);