ObjFW  Artifact [d53abea528]

Artifact d53abea528b577919d1550ab3c3fdd65c06c7345accfa4c09c415e2be8cb5e0c:

  • File src/hid/OHDualShock4Gamepad+Private.h — part of check-in [75f164f64b] at 2025-03-23 15:14:57 on branch trunk — Improve check for GameController.framework (user: js size: 1190) [more...]

/*
 * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im>
 *
 * All rights reserved.
 *
 * This program is free software: you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License version 3.0 only,
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
 * version 3.0 for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3.0 along with this program. If not, see
 * <https://www.gnu.org/licenses/>.
 */

#import "OHDualShock4Gamepad.h"

#if defined(OF_LINUX) && defined(OF_HAVE_FILES)
# import "OHEvdevGameController.h"
#endif
#ifdef OF_HAVE_GCF
# import "OHGCFGameController.h"
#endif

OF_ASSUME_NONNULL_BEGIN

OF_DIRECT_MEMBERS
@interface OHDualShock4Gamepad ()
#if defined(OF_LINUX) && defined(OF_HAVE_FILES)
    <OHEvdevMapping>
#endif
#ifdef OF_HAVE_GCF
    <OHGCFMapping>
#endif

- (instancetype)oh_init OF_METHOD_FAMILY(init);
@end

OF_ASSUME_NONNULL_END