atomizer: Remove.

Not used by anything at all, and not included in the build.
Even the BeOS engineer who created it wrote in a Be Newsletter
that he was uncertain how useful it was, which is why BeOS
did not ship it as a kernel add-on...
This commit is contained in:
Augustin Cavalier
2020-03-07 17:50:21 -05:00
parent cbdbe1cf43
commit 96d5cadcdb
4 changed files with 0 additions and 499 deletions
-47
View File
@@ -1,47 +0,0 @@
/*
* Copyright 2010, Haiku Inc. All Rights Reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _ATOMIZER_H
#define _ATOMIZER_H
#include <SupportDefs.h>
#include <module.h>
#ifdef __cplusplus
extern "C" {
#endif
#define B_ATOMIZER_MODULE_NAME "generic/atomizer/v1"
#define B_SYSTEM_ATOMIZER_NAME "Haiku System Atomizer"
typedef struct atomizer_info {
void* atomizer;
char name[B_OS_NAME_LENGTH];
uint32 atom_count;
} atomizer_info;
typedef struct atomizer_module_info {
module_info minfo;
const void* (*find_or_make_atomizer)(const char* string);
status_t (*delete_atomizer)(const void* atomizer);
const void* (*atomize)
(const void* atomizer, const char* string, int create);
const char* (*string_for_token)
(const void* atomizer, const void* atom);
status_t (*get_next_atomizer_info)
(void** cookie, atomizer_info* info);
const void* (*get_next_atom)(const void* atomizer, uint32* cookie);
} atomizer_module_info;
#ifdef __cplusplus
}
#endif
#endif /* _ATOMIZER_H */