721875440 发表于 2018-9-6 21:10

LockWorkStation 锁定屏幕示例代码

#include <windows.h>

#include <stdio.h>



#pragma comment( lib, "user32.lib" )



void main()

{

    // 锁定计算机



    if( !LockWorkStation() )

      printf ("计算机锁定失败: %d\n", GetLastError());

}

linuxprobe 发表于 2018-9-6 22:55

知道了这个代码后,我又能做什么呢?

721875440 发表于 2018-9-8 15:24

linuxprobe 发表于 2018-9-6 22:55
知道了这个代码后,我又能做什么呢?

锁屏,还能看什么,禁止你看不良视频
页: [1]
查看完整版本: LockWorkStation 锁定屏幕示例代码