Árvore de páginas

Retorna o valor da hora atual em milissegundos.

Sintaxe

LET var = GetTickCount()

Retorno

Nome

Tipo

Descrição

var

Inteiro

Retorna a constante referente a hora/segundos/milissegundos atual.

Observações

  • Função disponível a partir da build 7.00.101202A em Windows. Em Linux esta disponível a partir da build 7.00.131227P.

Exemplos

Exemplo 1
 MAIN
  DEFINE l_texto CHAR(150)
  DEFINE l_tempo_ini INTEGER
  DEFINE l_tempo_fim INTEGER
  LET l_tempo_ini = GetTickCount()
  Sleep(3)
  LET l_tempo_fim = GetTickCount()
  LET l_texto = "INI ",l_tempo_ini," - FIM ", l_tempo_fim CLIPPED, " INTERVALO = ",l_tempo_fim - l_tempo_ini
  CALL CONOUT(l_texto)
 END MAIN

Veja também

 

 

  • Sem rótulos