2

I need to start my application before the windows login form displays, and the login process should be done within the application. How is this possible with the Qt framework?

Nick
  • 1,417
  • 1
  • 14
  • 21
Alireza Soori
  • 645
  • 9
  • 25

1 Answers1

2

It is not possible to customize the Windows graphical identification and authentication (GINA) using only Qt. GINA is a component of some Microsoft Windows operating systems that provides secure authentication and interactive logon services. You will have to implement a custom GINA, which involves providing implementation for a set of native API calls. More information on this topic is available at Wikipedia.

Daniel Hedberg
  • 5,677
  • 4
  • 36
  • 61