summaryrefslogtreecommitdiffstats
path: root/src/libs/7zip/unix/CPP/myWindows/myGetTickCount.cpp
blob: 6a6080b355a5382664eb1f38da911f1ed82ec750 (plain)
1
2
3
4
5
6
7
8
#include "StdAfx.h"

#include <time.h>

DWORD WINAPI GetTickCount(VOID) {
  return (DWORD)time(0); // FIXME : but only for the seed of the random generator
}