Based on Nekogram. Key additions: - Rebrand to FoxiGram (app name, APK name, applicationId com.foxigram.app) - Embedded Xray (VLESS+Reality) proxy client via JNI libxray.so - Bundled hidden one-tap proxies (LTE + WiFi), read-only in UI - Auto-restore proxy on restart, rebind to active network (LTE/WiFi) - Server credentials externalized to git-ignored XrayServers.java (+ template) - libxray Go source included; compiled .so, keystore, google-services.json ignored
40 lines
1.1 KiB
C
40 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef VPX_VPX_VPX_INTEGER_H_
|
|
#define VPX_VPX_VPX_INTEGER_H_
|
|
|
|
/* get ptrdiff_t, size_t, wchar_t, NULL */
|
|
#include <stddef.h>
|
|
|
|
#if defined(_MSC_VER)
|
|
#define VPX_FORCE_INLINE __forceinline
|
|
#define VPX_INLINE __inline
|
|
#else
|
|
#define VPX_FORCE_INLINE __inline__ __attribute__((always_inline))
|
|
// TODO(jbb): Allow a way to force inline off for older compilers.
|
|
#define VPX_INLINE inline
|
|
#endif
|
|
|
|
/* Assume platforms have the C99 standard integer types. */
|
|
|
|
#if defined(__cplusplus)
|
|
#if !defined(__STDC_FORMAT_MACROS)
|
|
#define __STDC_FORMAT_MACROS
|
|
#endif
|
|
#if !defined(__STDC_LIMIT_MACROS)
|
|
#define __STDC_LIMIT_MACROS
|
|
#endif
|
|
#endif // __cplusplus
|
|
|
|
#include <inttypes.h>
|
|
#include <stdint.h>
|
|
|
|
#endif // VPX_VPX_VPX_INTEGER_H_
|