1
0
mirror of https://gitlab.com/klmp200/LO41.git synced 2025-07-12 12:49:24 +00:00

Le réparateur, j'ai pas testé lol

This commit is contained in:
2018-06-22 03:59:36 +02:00
parent 6b7bb7e119
commit 3334f77d22
10 changed files with 115 additions and 10 deletions

View File

@ -0,0 +1,22 @@
//
// Created by Antoine Bartuccio on 22/06/2018.
//
#ifndef LO41_ELEVATORBREAKER_H
#define LO41_ELEVATORBREAKER_H
#include "../Objects.h"
typedef struct o_ElevatorBreaker {
PRIVATE int thread_number;
PUBLIC void * (*runnable)(void * void_this);
PUBLIC void (*set_thread_number)(_THIS(ElevatorBreaker), int data);
DESTRUCTOR(ElevatorBreaker);
} ElevatorBreaker;
ElevatorBreaker *_init_ElevatorBreaker();
#endif //LO41_ELEVATORBREAKER_H