mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Linux fixes, misc fixes
This commit is contained in:
parent
609dbfa256
commit
c97b074fee
12 changed files with 131 additions and 68 deletions
|
@ -424,6 +424,15 @@ namespace Beefy.widgets
|
|||
return mSubItems[columnIdx];
|
||||
}
|
||||
|
||||
public ListViewItem GetOrCreateSubItem(int columnIdx)
|
||||
{
|
||||
if (mColumnIdx == columnIdx)
|
||||
return this;
|
||||
if ((mSubItems != null) && (columnIdx < mSubItems.Count))
|
||||
return mSubItems[columnIdx];
|
||||
return CreateSubItem(columnIdx);
|
||||
}
|
||||
|
||||
public virtual void MakeParent()
|
||||
{
|
||||
if (mChildItems == null)
|
||||
|
|
|
@ -44,7 +44,7 @@ namespace System
|
|||
{
|
||||
Platform.GetStrHelper(outPath, scope (outPtr, outSize, outResult) =>
|
||||
{
|
||||
Platform.BfpDynLib_GetFilePath(null, outPtr, outSize, (Platform.BfpLibResult*)outResult);
|
||||
Platform.BfpSystem_GetExecutablePath(outPtr, outSize, (Platform.BfpSystemResult*)outResult);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -55,8 +55,6 @@ namespace System
|
|||
[StdCall, CLink]
|
||||
public static extern BfpTimeStamp BfpSystem_GetTimeStamp();
|
||||
[StdCall, CLink]
|
||||
public static extern void BfpSystem_GetEnvironmentStrings(char8* outStr, int32* inOutStrSize, BfpSystemResult* outResult);
|
||||
[StdCall, CLink]
|
||||
public static extern uint8 BfpSystem_InterlockedExchange8(uint8* ptr, uint8 val); /// Returns the initial value in 'ptr'
|
||||
[StdCall, CLink]
|
||||
public static extern uint16 BfpSystem_InterlockedExchange16(uint16* ptr, uint16 val); /// Returns the initial value in 'ptr'
|
||||
|
@ -81,6 +79,10 @@ namespace System
|
|||
[StdCall, CLink]
|
||||
public static extern uint64 BfpSystem_InterlockedCompareExchange64(uint64* ptr, uint64 oldVal, uint64 newVal);
|
||||
[StdCall, CLink]
|
||||
public static extern void BfpSystem_GetExecutablePath(char8* outStr, int32* inOutStrSize, BfpSystemResult* outResult);
|
||||
[StdCall, CLink]
|
||||
public static extern void BfpSystem_GetEnvironmentStrings(char8* outStr, int32* inOutStrSize, BfpSystemResult* outResult);
|
||||
[StdCall, CLink]
|
||||
public static extern int32 BfpSystem_GetNumLogicalCPUs(BfpSystemResult* outResult);
|
||||
[StdCall, CLink]
|
||||
public static extern int64 BfpSystem_GetCPUTick();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue