publish changes

This commit is contained in:
Archie 2024-09-29 02:04:03 +00:00
parent afc5064a7b
commit ac2c6ac843
1605 changed files with 3354 additions and 3354 deletions

View file

@ -142,7 +142,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

View file

@ -39,7 +39,7 @@ typedef unsigned long FOURCC;
#if defined(_WIN32) && !defined(__GNUC__)
#include <stddef.h>
// since windows doesn't have stdint.h
// since arch doesn't have stdint.h
typedef unsigned __int64 uint64_t;
typedef unsigned __int32 uint32_t;
typedef unsigned __int16 uint16_t;
@ -56,7 +56,7 @@ typedef unsigned long FOURCC;
#endif
#ifdef WIN32
#include <windows.h>
#include <arch.h>
// this is for GUID == and !=
#include <objbase.h>
#ifndef GUID_EQUALS_DEFINED

View file

@ -9,11 +9,11 @@
#error this file should only be included from platform.h
#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