added more stuff
This commit is contained in:
parent
41621b2af3
commit
b35dec2fdc
8 changed files with 274 additions and 97 deletions
|
@ -25,5 +25,7 @@ typedef struct
|
|||
unsigned char battery_percent;
|
||||
} FBattery;
|
||||
|
||||
HARMONYLINKLIB_API FBattery* FBattery_Init(const FBattery* self);
|
||||
|
||||
HARMONYLINKLIB_API void FBattery_print(const FBattery* self);
|
||||
|
||||
|
|
|
@ -20,43 +20,27 @@
|
|||
#include <stdbool.h>
|
||||
|
||||
#include "Core.h"
|
||||
|
||||
typedef struct {
|
||||
char** data; // Array of strings (flags)
|
||||
size_t FlagsCount; // Number of flags
|
||||
} FlagsInfo;
|
||||
#include "Structs/StringArray.h"
|
||||
|
||||
typedef struct {
|
||||
char* VendorID;
|
||||
char* Model_Name;
|
||||
unsigned int Physical_Cores;
|
||||
unsigned int Logical_Cores;
|
||||
FlagsInfo flagsInfo;
|
||||
StringArray flagsInfo;
|
||||
} FCPUInfo;
|
||||
|
||||
// Initialize FlagsInfo
|
||||
void FlagsInfo_Init(FlagsInfo* flagsInfo, size_t count);
|
||||
|
||||
// Initialize FCPUInfo
|
||||
void FCPUInfo_Init(FCPUInfo* cpuInfo, const char* vendorID, const char* modelName, unsigned int physicalCores, unsigned int logicalCores, size_t flagsCount);
|
||||
FCPUInfo* FCPUInfo_Init(const char* vendorID, const char* modelName, unsigned int physicalCores, unsigned int logicalCores, size_t flagsCount);
|
||||
|
||||
// Print FlagsInfo
|
||||
HARMONYLINKLIB_API void HL_FlagsInfo_Print(const FlagsInfo* flagsInfo);
|
||||
HARMONYLINKLIB_API void HL_FlagsInfo_Print(const FCPUInfo* cpuInfo);
|
||||
|
||||
// Print FCPUInfo
|
||||
HARMONYLINKLIB_API void HL_FCPUInfo_Print(const FCPUInfo* cpuInfo);
|
||||
|
||||
// Free FlagsInfo
|
||||
HARMONYLINKLIB_API void HL_FlagsInfo_Free(FlagsInfo* flagsInfo);
|
||||
|
||||
// Free FCPUInfo
|
||||
HARMONYLINKLIB_API void FCPUInfo_Free(FCPUInfo* cpuInfo);
|
||||
HARMONYLINKLIB_API void HL_FCPUInfo_Free(FCPUInfo* cpuInfo);
|
||||
|
||||
// Check if a flag exists in FlagsInfo
|
||||
HARMONYLINKLIB_API bool HL_FlagsInfo_Contains(const FlagsInfo* flagsInfo, const char* flag);
|
||||
|
||||
// Add a flag to FlagsInfo
|
||||
void FlagsInfo_AddFlag(FlagsInfo* flagsInfo, size_t index, const char* flag);
|
||||
|
||||
// Remove a flag from FlagsInfo by value
|
||||
void FlagsInfo_Remove(FlagsInfo* flagsInfo, const char* flag);
|
||||
HARMONYLINKLIB_API bool HL_FlagsInfo_Contains(const FCPUInfo* cpuInfo, const char* flag);
|
||||
|
|
51
HarmonyLinkLib/include/Structs/StringArray.h
Normal file
51
HarmonyLinkLib/include/Structs/StringArray.h
Normal file
|
@ -0,0 +1,51 @@
|
|||
// Copyright (c) 2024 Jordon Brooks
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// include/Structs/StringArray.h
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include "Core.h"
|
||||
|
||||
#define DEFAULT_INITIAL_FLAGS_SIZE 4
|
||||
|
||||
typedef struct {
|
||||
char** data; // Array of strings (flags)
|
||||
size_t FlagsCount; // Number of flags
|
||||
size_t AllocatedSize; // Number of allocated slots
|
||||
} StringArray;
|
||||
|
||||
// Initialize FlagsInfo
|
||||
void StringArray_Init(StringArray* flagsInfo, size_t overrideInitialSize);
|
||||
|
||||
// Print FlagsInfo
|
||||
HARMONYLINKLIB_API void HL_StringArray_Print(const StringArray* flagsInfo);
|
||||
|
||||
// Free FlagsInfo
|
||||
HARMONYLINKLIB_API void HL_StringArray_Free(StringArray* flagsInfo);
|
||||
|
||||
// Check if a flag exists in FlagsInfo
|
||||
HARMONYLINKLIB_API bool HL_StringArray_Contains(const StringArray* flagsInfo, const char* flag);
|
||||
|
||||
// Add a flag to FlagsInfo
|
||||
void StringArray_AddFlag(StringArray* flagsInfo, const char* flag);
|
||||
|
||||
// Remove a flag from FlagsInfo by value
|
||||
void StringArray_Remove(StringArray* flagsInfo, const char* flag);
|
||||
|
||||
// Resize FlagsInfo array
|
||||
void StringArray_Resize(StringArray* flagsInfo, size_t newSize);
|
Loading…
Add table
Add a link
Reference in a new issue