1
0
mirror of https://github.com/deadw00d/AROS.git synced 2025-12-08 22:46:36 +00:00
Files
AROS-v0/workbench/libs/lowlevel/starttimerint.c
Matthias Rustler 6b5a534ce3 workbench: detabbed
2021-05-02 13:55:14 +02:00

48 lines
916 B
C

/*
Copyright (C) 1995-2007, The AROS Development Team. All rights reserved.
Desc:
*/
#include "lowlevel_intern.h"
#include <aros/libcall.h>
#include <exec/types.h>
#include <libraries/lowlevel.h>
/*****************************************************************************
NAME */
AROS_LH3(VOID, StartTimerInt,
/* SYNOPSIS */
AROS_LHA(APTR , intHandle, A1),
AROS_LHA(ULONG, timeInterval, D0),
AROS_LHA(BOOL , continuous, D1),
/* LOCATION */
struct LowLevelBase *, LowLevelBase, 16, LowLevel)
/* FUNCTION
INPUTS
RESULT
BUGS
This function is unimplemented.
INTERNALS
*****************************************************************************/
{
AROS_LIBFUNC_INIT
/* TODO: Write lowlevel/StartTimerInt() */
aros_print_not_implemented ("lowlevel/StartTimerInt");
return;
AROS_LIBFUNC_EXIT
} /* StartTimerInt */