Click here to Skip to main content
15,880,427 members
Articles / Programming Languages / C++
Article

Lock workstation

Rate me:
Please Sign up or sign in to vote.
3.13/5 (6 votes)
5 Jun 2005 54.2K   906   19   7
Lock workstation without downloading the Platform SDK.

Introduction

The LockWorkStation function submits a request to lock the workstation's display. Locking a workstation protects it from unauthorized use.

Code explanation

The following example locks the workstation using the LockWorkStation function. The function requires version Windows 2000 Professional or later.

This example also illustrates load-time dynamic linking. If the DLL is not available, the application using load-time dynamic linking must simply terminate. The run-time dynamic linking example, however, can respond to the error. This is a good way to prevent forced termination. You can use this technique in the applications which should be runnable at all Windows platforms but with delimited functionality following the currently running version of the system.

#include <windows.h>

#define IsWin2000Plus() ((DWORD)(LOBYTE(LOWORD(GetVersion()))) >= 5)

int (__stdcall * MyLockWorkStation)();

int __stdcall WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, 
                                     LPSTR lpCmdLine, int nCmdShow)
{
    HINSTANCE hinstLib;

    if (IsWin2000Plus())
    {
        hinstLib = LoadLibrary("USER32.DLL");

        if (hinstLib)
        {
            MyLockWorkStation = (int (__stdcall *)()) 
                  GetProcAddress(hinstLib, "LockWorkStation");

            if (MyLockWorkStation != NULL)
                (MyLockWorkStation) ();
        }

        FreeLibrary(hinstLib);
    }
    else
        MessageBox(NULL, "This application requires" 
           " Windows 2000 Professional or higher!", 
           "Lock Workstation", MB_OK);

    return 0;
}

This application has the same result as pressing Ctrl+Alt+Del and clicking Lock Workstation.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Slovakia Slovakia
Wink | ;-)

Comments and Discussions

 
GeneralLogging in Pin
JAQ224-Feb-07 5:31
JAQ224-Feb-07 5:31 
AnswerRe: Logging in Pin
Dalibor Drzik24-Feb-07 23:57
Dalibor Drzik24-Feb-07 23:57 
Questionwin 2K Pin
levsky17-Oct-05 5:16
susslevsky17-Oct-05 5:16 
AnswerRe: win 2K Pin
Dalibor Drzik17-Oct-05 6:54
Dalibor Drzik17-Oct-05 6:54 
NewsRe: win 2K Pin
levsky17-Oct-05 7:14
susslevsky17-Oct-05 7:14 
GeneralAlso known as.. Pin
Alexander M.,6-Jun-05 10:22
Alexander M.,6-Jun-05 10:22 
GeneralRe: Also known as.. Pin
Dalibor Drzik7-Jun-05 2:37
Dalibor Drzik7-Jun-05 2:37 
Yes, of course. There are many possibilities. E.g. WinKey + L in Windows XP.

This article (or code example) is an introduction for my next two articles.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.