摘要: 如题,利用C语言的GetCursorPos函数实现. 示例: #include <bits/stdc++.h> #include <windows.h> #include <conio.h> int main(){ long x, y; POINT pt = {0, 0}; LPPOINT xy = 阅读全文
posted @ 2020-01-20 13:38 Drake19 阅读(1817) 评论(0) 推荐(0)
摘要: 平时用于清理电脑垃圾的批处理程序,由本人整理. 最小化 + 清理 + 关机? @echo off :: 关闭路径 :: 最小化运行 %1(start /min cmd.exe /c %0 :&exit) :: 网上出名的清理代码 del /f /s /q %systemdrive%\*.tmp de 阅读全文
posted @ 2020-01-20 12:29 Drake19 阅读(457) 评论(0) 推荐(0)