forked from external/yambar
particles: remove header files
This commit is contained in:
parent
8d26ff7de2
commit
74b0722d2f
12 changed files with 6 additions and 40 deletions
|
@ -1,8 +1,7 @@
|
||||||
#include "empty.h"
|
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "../config.h"
|
#include "../config.h"
|
||||||
|
#include "../particle.h"
|
||||||
|
|
||||||
static int
|
static int
|
||||||
begin_expose(struct exposable *exposable)
|
begin_expose(struct exposable *exposable)
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
#pragma once
|
|
||||||
#include "../particle.h"
|
|
||||||
|
|
||||||
extern const struct particle_info particle_empty;
|
|
|
@ -1,10 +1,10 @@
|
||||||
#include "list.h"
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#define LOG_MODULE "list"
|
#define LOG_MODULE "list"
|
||||||
#define LOG_ENABLE_DBG 1
|
#define LOG_ENABLE_DBG 1
|
||||||
#include "../log.h"
|
#include "../log.h"
|
||||||
#include "../config.h"
|
#include "../config.h"
|
||||||
|
#include "../particle.h"
|
||||||
|
|
||||||
struct private {
|
struct private {
|
||||||
struct particle **particles;
|
struct particle **particles;
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
#pragma once
|
|
||||||
#include "../particle.h"
|
|
||||||
|
|
||||||
struct particle *particle_list_new(
|
|
||||||
struct particle *common,
|
|
||||||
struct particle *particles[], size_t count,
|
|
||||||
int left_spacing, int right_spacing);
|
|
||||||
|
|
||||||
extern const struct particle_info particle_list;
|
|
|
@ -1,5 +1,3 @@
|
||||||
#include "map.h"
|
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
@ -7,6 +5,7 @@
|
||||||
#define LOG_MODULE "map"
|
#define LOG_MODULE "map"
|
||||||
#include "../log.h"
|
#include "../log.h"
|
||||||
#include "../config.h"
|
#include "../config.h"
|
||||||
|
#include "../particle.h"
|
||||||
|
|
||||||
struct particle_map {
|
struct particle_map {
|
||||||
const char *tag_value;
|
const char *tag_value;
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
#pragma once
|
|
||||||
#include "../particle.h"
|
|
||||||
|
|
||||||
extern const struct particle_info particle_map;
|
|
|
@ -1,5 +1,3 @@
|
||||||
#include "progress-bar.h"
|
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
@ -8,6 +6,7 @@
|
||||||
#define LOG_ENABLE_DBG 0
|
#define LOG_ENABLE_DBG 0
|
||||||
#include "../log.h"
|
#include "../log.h"
|
||||||
#include "../config.h"
|
#include "../config.h"
|
||||||
|
#include "../particle.h"
|
||||||
|
|
||||||
struct private {
|
struct private {
|
||||||
char *tag;
|
char *tag;
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
#pragma once
|
|
||||||
#include "../particle.h"
|
|
||||||
|
|
||||||
extern const struct particle_info particle_progress_bar;
|
|
|
@ -1,5 +1,3 @@
|
||||||
#include "ramp.h"
|
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
@ -7,6 +5,7 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "../config.h"
|
#include "../config.h"
|
||||||
|
#include "../particle.h"
|
||||||
|
|
||||||
struct private {
|
struct private {
|
||||||
char *tag;
|
char *tag;
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
#pragma once
|
|
||||||
#include "../particle.h"
|
|
||||||
|
|
||||||
extern const struct particle_info particle_ramp;
|
|
|
@ -1,5 +1,3 @@
|
||||||
#include "string.h"
|
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
@ -8,6 +6,7 @@
|
||||||
#define LOG_ENABLE_DBG 1
|
#define LOG_ENABLE_DBG 1
|
||||||
#include "../log.h"
|
#include "../log.h"
|
||||||
#include "../config.h"
|
#include "../config.h"
|
||||||
|
#include "../particle.h"
|
||||||
|
|
||||||
struct private {
|
struct private {
|
||||||
char *text;
|
char *text;
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
#pragma once
|
|
||||||
#include "../particle.h"
|
|
||||||
|
|
||||||
extern const struct particle_info particle_string;
|
|
Loading…
Add table
Reference in a new issue