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.
20 lines
413 B
20 lines
413 B
#ifndef __BASECSP__PINGDLG__H
|
|
#define __BASECSP__PINGDLG__H
|
|
|
|
#include <windows.h>
|
|
|
|
//
|
|
// Function: PinDlgProc
|
|
//
|
|
// Purpose: Display Pin-Entry UI for the Base CSP.
|
|
//
|
|
// The lParam parameter should be a pointer to a
|
|
// PIN_SHOW_GET_PIN_UI_INFO structure.
|
|
//
|
|
INT_PTR CALLBACK PinDlgProc(
|
|
HWND hDlg,
|
|
UINT message,
|
|
WPARAM wParam,
|
|
LPARAM lParam);
|
|
|
|
#endif
|