123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- #ifndef NULLSOFT_CREDAENTIAL_DIALOG_HEADER
- #define NULLSOFT_CREDAENTIAL_DIALOG_HEADER
- #if defined(_MSC_VER) && (_MSC_VER >= 1020)
- #pragma once
- #endif
- #include <windows.h>
- #define CDS_USEUSERNAME 0x0001
- #define CDS_USEPASSWORD 0x0002
- #define CDS_SKINDIALOG 0x0004
- #define CDS_APPMODAL 0x0008
- typedef struct _WACREDDLG
- {
- int size;
- HWND hwndParent;
- LPWSTR szUser;
- INT cchUser;
- LPWSTR szPassword;
- INT cchPassword;
- DWORD flags;
- LPCWSTR title;
- HBITMAP hbmp;
- LPCWSTR greating;
- HWND hwndWA;
- } WACREDDLG, *PWACREDDLG;
- #ifdef __cplusplus
- extern "C" {
- #endif
- INT ShowCredentialDialog(const WACREDDLG *pcd);
- #ifdef __cplusplus
- }
- #endif
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #endif
|