dst.h
来自「该代码压缩包只为需要研究CE下的任务管理器的实现而提供的。某些通用的头文件没有包」· C头文件 代码 · 共 40 行
H
40 行
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft end-user
// license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
// If you did not accept the terms of the EULA, you are not authorized to use
// this source code. For a copy of the EULA, please see the LICENSE.RTF on your
// install media.
//
/*---------------------------------------------------------------------------*\
*
* module: dst.h
*
* purpose: header file for dst.cpp
*
\*---------------------------------------------------------------------------*/
#ifndef _DST_H_
#define _DST_H_
void DST_Init(void);
BOOL DST_Auto(void);
BOOL DST_ShowMessage(void);
HANDLE DST_SetDSTEvent(void);
HANDLE DST_SetTimezoneChangeEvent(void);
HANDLE DST_SetTimeChangeEvent(void);
void DST_WaitForEvents(LPHANDLE DST_handles);
BOOL DST_DetermineChangeDate(LPSYSTEMTIME pst);
void DST_SetDaylightOrStandardTime(void);
// helper functions
int DowFromDate(SYSTEMTIME *pst);
int GetStartDowForMonth(int yr, int mo);
BOOL LocaleSupportsDST(TIME_ZONE_INFORMATION *ptzi);
#endif // _DST_H_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?