⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timeb.inc

📁 C标准库源代码
💻 INC
字号:
;***
;timeb.inc - definition of the C Run-Time Library "timeb" structure
;
;       Copyright (c) 1992-1997, Microsoft Corporation. All rights reserved.
;
;Purpose:
;       Analog of <sys/timeb.h> for assembler routines.
;
;Notes:
;       This file must reflect the structure "timeb" defined in <sys/timeb.h>
;       and is dependent on the alignment characteristics of the Intel 386;
;       namely, that words ("shorts") are aligned on even addresses and
;       dwords ("longs") are aligned on quad addresses.
;
;       Important: MIPS follows the Intel 386 convention as well.
;
;******************************************************************************

;struct _timeb {
;       time_t time;
;       unsigned short millitm;
;       short tmzone;
;       short dstflag;
;       };

_timeb  STRUC
        _time           dd      ?
        _millitm        dw      ?
        _tmzone         dw      ?
        _dstflag        dw      ?
        __padding__     dw      ?       ; pad the structure out to
_timeb  ENDS                            ; an even number of DWORDs

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -