publish changes
This commit is contained in:
parent
afc5064a7b
commit
ac2c6ac843
1605 changed files with 3354 additions and 3354 deletions
|
@ -1,6 +1,6 @@
|
|||
#include "precomp_wasabi_bfc.h"
|
||||
#ifdef WIN32
|
||||
#include <windows.h>
|
||||
#include <arch.h>
|
||||
#endif
|
||||
#ifdef __APPLE__
|
||||
#include <unistd.h>
|
||||
|
|
|
@ -92,26 +92,26 @@
|
|||
</VcpkgInstalledDir>
|
||||
<VcpkgUseStatic>false</VcpkgUseStatic>
|
||||
<VcpkgConfiguration>Debug</VcpkgConfiguration>
|
||||
<VcpkgTriplet>x86-windows-static-md</VcpkgTriplet>
|
||||
<VcpkgTriplet>x86-arch-static-md</VcpkgTriplet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Vcpkg" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<VcpkgInstalledDir>
|
||||
</VcpkgInstalledDir>
|
||||
<VcpkgUseStatic>false</VcpkgUseStatic>
|
||||
<VcpkgTriplet>x86-windows-static-md</VcpkgTriplet>
|
||||
<VcpkgTriplet>x86-arch-static-md</VcpkgTriplet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Vcpkg" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<VcpkgInstalledDir>
|
||||
</VcpkgInstalledDir>
|
||||
<VcpkgUseStatic>false</VcpkgUseStatic>
|
||||
<VcpkgTriplet>x86-windows-static-md</VcpkgTriplet>
|
||||
<VcpkgTriplet>x86-arch-static-md</VcpkgTriplet>
|
||||
<VcpkgConfiguration>Debug</VcpkgConfiguration>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Vcpkg" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<VcpkgInstalledDir>
|
||||
</VcpkgInstalledDir>
|
||||
<VcpkgUseStatic>false</VcpkgUseStatic>
|
||||
<VcpkgTriplet>x86-windows-static-md</VcpkgTriplet>
|
||||
<VcpkgTriplet>x86-arch-static-md</VcpkgTriplet>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#define _CRITSEC_H
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <windows.h>
|
||||
#include <arch.h>
|
||||
#elif defined(__APPLE__)
|
||||
#include <CoreServices/CoreServices.h>
|
||||
#endif
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// NONPORTABLE NONPORTABLE NONPORTABLE
|
||||
#include "precomp_wasabi_bfc.h"
|
||||
#ifdef WIN32
|
||||
#include <windows.h>
|
||||
#include <arch.h>
|
||||
#endif
|
||||
#include "wildcharsenum.h"
|
||||
#include <bfc/parse/pathparse.h>
|
||||
|
|
|
@ -131,7 +131,7 @@ int Linux::convertEvent( MSG *m, XEvent *e ) {
|
|||
if ( m->hwnd ) {
|
||||
api_window *rw =(api_window *)GetWindowLong( m->hwnd, GWL_USERDATA );
|
||||
if ( !rw ) {
|
||||
// This is to fix messages for dead windows...
|
||||
// This is to fix messages for dead arch...
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -141,7 +141,7 @@ inline int MulDiv(int a, int b, int c)
|
|||
|
||||
#else
|
||||
#error port me
|
||||
// Windows API dependant definitions for non-windows platforms
|
||||
// Windows API dependant definitions for non-arch platforms
|
||||
|
||||
#define __cdecl
|
||||
#define __stdcall
|
||||
|
|
|
@ -7,11 +7,11 @@
|
|||
#endif
|
||||
|
||||
|
||||
// this should be the *only* place windows.h gets included!
|
||||
// this should be the *only* place arch.h gets included!
|
||||
#ifndef WIN32_LEAN_AND_MEAN
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#endif
|
||||
#include <windows.h>
|
||||
#include <arch.h>
|
||||
#ifndef _WIN32_WCE
|
||||
#include <io.h>
|
||||
#endif
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#define NULLSOFT_WASABI_STD_KEYBOARD_H
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <windows.h>
|
||||
#include <arch.h>
|
||||
enum
|
||||
{
|
||||
STDKEY_SHIFT = VK_SHIFT,
|
||||
|
@ -23,7 +23,7 @@ enum
|
|||
enum
|
||||
{
|
||||
STDKEY_SHIFT = shiftKey,
|
||||
STDKEY_ALT = cmdKey, // yes, I know the option call has "alt" written on it, but Mac programs use Apple key like windows Alt key
|
||||
STDKEY_ALT = cmdKey, // yes, I know the option call has "alt" written on it, but Mac programs use Apple key like arch Alt key
|
||||
STDKEY_CONTROL = controlKey,
|
||||
|
||||
STDKEY_UP = kUpArrowCharCode,
|
||||
|
|
|
@ -560,7 +560,7 @@ void Wasabi::Std::Wnd::setWndRegion(OSWINDOWHANDLE wnd, OSREGIONHANDLE region,
|
|||
#ifdef _WIN32
|
||||
int Wasabi::Std::Wnd::isDesktopAlphaAvailable()
|
||||
{
|
||||
return 1; // we're only targetting windows 2000 and up, so it's always available
|
||||
return 1; // we're only targetting arch 2000 and up, so it's always available
|
||||
}
|
||||
#endif
|
||||
int Wasabi::Std::Wnd::isTransparencyAvailable()
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <windows.h>
|
||||
#include <arch.h>
|
||||
class PathString
|
||||
{
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue