pdays.tpl

来自「在手机操作系统symbina上使用的一个脚本扩展语言的代码实现,可以参考用于自己」· TPL 代码 · 共 37 行

TPL
37
字号
REM pDays.tpl
REM EPOC OPL automatic test code for DAYSTODATE
REM Copyright (c) 1991-2000 Symbian Ltd. All rights reserved.

INCLUDE "Const.oph"
INCLUDE "hUtils.oph"

PROC Standalone:
	REM Main procedure called when not running inside test harness.
	LOADM KhUtils$
	hLink:( "pDays", hThreadIdFromOplDoc&:, KhUserFull%)
	REM After standalone completion, control returns here.
	dINIT "Tests complete" :DIALOG
ENDP


proc pDays:
	rem hInitTestHarness:(KhInitLocalErrorHandling%, KhInitNotUsed%)
	hRunTest%:("tDate")
rem	hCleanUp%:("CleanUp")
endp


proc tDate:
	local d1&
	local day%,month%,year%
	local rep&
	d1&=60504 	rem 27/8/2065	
	daystodate d1&,year%,month%,day%
	if day%<>27 : rep&=rep&+1 :endif
	if month%<>8 : rep&=rep&+2 :endif
	if year%<>2065 : rep&=rep&+4 :endif
	if rep& : raise rep& : endif
endp

REM End of pDays.tpl

⌨️ 快捷键说明

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