home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / security / winnt / gina / protos.h < prev    next >
Text File  |  1997-10-09  |  1KB  |  77 lines

  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.  
  18.  
  19. int
  20. CALLBACK
  21. WelcomeDlgProc(
  22.     HWND        hDlg,
  23.     UINT        Message,
  24.     WPARAM      wParam,
  25.     LPARAM      lParam);
  26.  
  27. int
  28. CALLBACK
  29. LogonDlgProc(
  30.     HWND        hDlg,
  31.     UINT        Message,
  32.     WPARAM      wParam,
  33.     LPARAM      lParam);
  34.  
  35. int
  36. CALLBACK
  37. ShutdownDlgProc(
  38.     HWND        hDlg,
  39.     UINT        Message,
  40.     WPARAM      wParam,
  41.     LPARAM      lParam);
  42.  
  43. int
  44. CALLBACK
  45. OptionsDlgProc(
  46.     HWND        hDlg,
  47.     UINT        Message,
  48.     WPARAM      wParam,
  49.     LPARAM      lParam);
  50.  
  51. VOID
  52. CenterWindow(
  53.     HWND    hwnd
  54.     );
  55.  
  56. int
  57. ErrorMessage(
  58.     HWND        hWnd,
  59.     PWSTR       pszTitleBar,
  60.     DWORD       Buttons);
  61.  
  62. int
  63. AttemptLogon(
  64.     PGlobals        pGlobals,
  65.     PMiniAccount    pAccount,
  66.     PSID            pLogonSid,
  67.     PLUID           pLogonId);
  68.  
  69. PWSTR
  70. AllocAndCaptureText(
  71.     HWND    hDlg,
  72.     int     Id);
  73.  
  74. PWSTR
  75. DupString(
  76.     PWSTR   pszText);
  77.