摘要:
这两天一直在试着调用C++编写的Dll动态链接库来实现一些功能,初学总是遇见各种各样的问题,这次要实现一个改变系统时间的小功能,从而找到SetSystemTime这个系统API,SetSystemTime的原型为: 1 BOOL WINAPI SetSystemTime( 2 _In_ const SYSTEMTIME *lpSystemTime 3 ); 4 5 typedef struct _SYSTEMTIME { 6 WORD wYear; 7 WORD wMonth; 8 WORD wDayOfWeek; 9 WORD wDay;10 WORD wHour... 阅读全文