/
githubmirror
/
libsmbios
Обзор
Документация
Войти
/
githubmirror
/
libsmbios
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/include/smbios_c/obj/memory.h
59 строк
2 KB
Michael E Brown
rename DLL_SPEC to reduce chance of namespace collision.
09 июн 2010, 19:26
09 июн 2010, 19:26
7b2ea0b
Код
Авторство
О чём код?
// vim:expandtab:autoindent:tabstop=4:shiftwidth=4:filetype=c: /* * Copyright (C) 2005 Dell Inc. * by Michael Brown <Michael_E_Brown@dell.com> * Licensed under the Open Software License version 2.1 * * Alternatively, you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation; either version 2 of the License, * or (at your option) any later version. * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. */ #ifndef C_OBJ_MEMORY_H #define C_OBJ_MEMORY_H // include smbios_c/compat.h first #include "smbios_c/compat.h" #include "smbios_c/types.h" EXTERN_C_BEGIN; #define MEMORY_DEFAULTS 0x0000 #define MEMORY_GET_SINGLETON 0x0001 #define MEMORY_GET_NEW 0x0002 #define MEMORY_UNIT_TEST_MODE 0x0004 #define MEMORY_NO_ERR_CLEAR 0x0008 struct memory_access_obj; // construct LIBSMBIOS_C_DLL_SPEC struct memory_access_obj *memory_obj_factory(int flags, ...); // destruct LIBSMBIOS_C_DLL_SPEC void memory_obj_free(struct memory_access_obj *); LIBSMBIOS_C_DLL_SPEC int memory_obj_read(const struct memory_access_obj *, void *buffer, u64 offset, size_t length); LIBSMBIOS_C_DLL_SPEC int memory_obj_write(const struct memory_access_obj *, void *buffer, u64 offset, size_t length); // format error string LIBSMBIOS_C_DLL_SPEC const char *memory_obj_strerror(const struct memory_access_obj *m); // helper LIBSMBIOS_C_DLL_SPEC s64 memory_obj_search(const struct memory_access_obj *, const char *pat, size_t patlen, u64 start, u64 end, u64 stride); // Following calls must be properly nested in equal pairs LIBSMBIOS_C_DLL_SPEC void memory_obj_suggest_leave_open(struct memory_access_obj *); LIBSMBIOS_C_DLL_SPEC void memory_obj_suggest_close(struct memory_access_obj *); // ask if close flag is set LIBSMBIOS_C_DLL_SPEC bool memory_obj_should_close(const struct memory_access_obj *); EXTERN_C_END; #endif /* MEMORY_H */