mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-30 05:15:59 +02:00
Working on installer, fixing more Win32 issues
Throwing error on member references with ".." cascade token outside invocations (ie: "ts..mA = 123") Fixed 'Thread.ModuleTLSIndex' error - which caused us TLS lookup failures in Beef DLLs Fixed some hotswap errors Made BeefPerf shut down properly Fixed an 'int literal' FixIntUnknown issue where rhs was System.Object which caused an illegal boxing Fixed COFF::LocateSymbol issues with Win32 and also with linking to static libraries - showed up with hot-linking in fmod when hot-adding a floating point mod Fixed a couple memory leaks Fixed alignment issue in COFF::ParseCompileUnit
This commit is contained in:
parent
aad0a640c5
commit
b63a243fd7
73 changed files with 2474 additions and 293 deletions
|
@ -25,7 +25,6 @@
|
|||
*/
|
||||
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace SDL2
|
||||
{
|
||||
|
@ -40,13 +39,13 @@ namespace SDL2
|
|||
public const int32 SDL_TTF_PATCHLEVEL = 12;
|
||||
|
||||
public const int32 UNICODE_BOM_NATIVE = 0xFEFF;
|
||||
public const int32 UNICODE_BOM_SWAPPED = 0xFFFE;
|
||||
public const int32 UNICODE_BOM_SWAPPED = 0xFFFE;
|
||||
|
||||
public const int32 TTF_STYLE_NORMAL = 0x00;
|
||||
public const int32 TTF_STYLE_BOLD = 0x01;
|
||||
public const int32 TTF_STYLE_ITALIC = 0x02;
|
||||
public const int32 TTF_STYLE_UNDERLINE = 0x04;
|
||||
public const int32 TTF_STYLE_STRIKETHROUGH = 0x08;
|
||||
public const int32 TTF_STYLE_NORMAL = 0x00;
|
||||
public const int32 TTF_STYLE_BOLD = 0x01;
|
||||
public const int32 TTF_STYLE_ITALIC = 0x02;
|
||||
public const int32 TTF_STYLE_UNDERLINE = 0x04;
|
||||
public const int32 TTF_STYLE_STRIKETHROUGH = 0x08;
|
||||
|
||||
public const int32 TTF_HINTING_NORMAL = 0;
|
||||
public const int32 TTF_HINTING_LIGHT = 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue