I am getting the following error when trying to load FWPPC application.
not implemented yet
clock()
How do I resolve error?
clock() Error
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Darrell,
Please also add this code to your main PRG:
Please also add this code to your main PRG:
Code: Select all
#pragma BEGINDUMP
#include <windows.h>
BOOL GetProcessTimes(
HANDLE hProcess,
LPFILETIME lpCreationTime,
LPFILETIME lpExitTime,
LPFILETIME lpKernelTime,
LPFILETIME lpUserTime
)
{ return FALSE; }
BOOL Beep(
DWORD dwFreq,
DWORD dwDuration
)
{ return FALSE; }
#pragma ENDDUMP