[go: up one dir, main page]

File: status.c

package info (click to toggle)
libkarma 0.1.2-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 676 kB
  • sloc: ansic: 6,224; sh: 328; makefile: 229; cs: 170
file content (35 lines) | stat: -rw-r--r-- 547 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
 * libkarma/status.c
 *
 * Copyright (c) Frank Zschockelt <libkarma@freakysoft.de> 2005
 *
 *
 * You may distribute and modify this program under the terms of 
 * the GNU GPL, version 2 or later.
 * 
 */
#include <stdlib.h>

#include "status.h"

static status_func * callback = NULL;

int lk_status_init(status_func update)
{
    return 0;
}

int lk_status_setup(const char * in_progress, uint32_t start, uint32_t units)
{
    return 0;
}

int lk_status_increment(uint32_t step)
{
    return 0;
}

int lk_status_destroy(void)
{
    return 0;
}