PROTOS.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. //+---------------------------------------------------------------------------
  2. //
  3. //  Microsoft Windows
  4. //  Copyright 1992 - 1997 Microsoft Corporation.
  5. //
  6. //  File:       protos.h
  7. //
  8. //  Contents:
  9. //
  10. //  Classes:
  11. //
  12. //  Functions:
  13. //
  14. //  History:    4-20-95   RichardW   Created
  15. //
  16. //----------------------------------------------------------------------------
  17. int
  18. CALLBACK
  19. WelcomeDlgProc(
  20.     HWND        hDlg,
  21.     UINT        Message,
  22.     WPARAM      wParam,
  23.     LPARAM      lParam);
  24. int
  25. CALLBACK
  26. LogonDlgProc(
  27.     HWND        hDlg,
  28.     UINT        Message,
  29.     WPARAM      wParam,
  30.     LPARAM      lParam);
  31. int
  32. CALLBACK
  33. ShutdownDlgProc(
  34.     HWND        hDlg,
  35.     UINT        Message,
  36.     WPARAM      wParam,
  37.     LPARAM      lParam);
  38. int
  39. CALLBACK
  40. OptionsDlgProc(
  41.     HWND        hDlg,
  42.     UINT        Message,
  43.     WPARAM      wParam,
  44.     LPARAM      lParam);
  45. VOID
  46. CenterWindow(
  47.     HWND    hwnd
  48.     );
  49. int
  50. ErrorMessage(
  51.     HWND        hWnd,
  52.     PWSTR       pszTitleBar,
  53.     DWORD       Buttons);
  54. int
  55. AttemptLogon(
  56.     PGlobals        pGlobals,
  57.     PMiniAccount    pAccount,
  58.     PSID            pLogonSid,
  59.     PLUID           pLogonId);
  60. PWSTR
  61. AllocAndCaptureText(
  62.     HWND    hDlg,
  63.     int     Id);
  64. PWSTR
  65. DupString(
  66.     PWSTR   pszText);