ObjFW  Check-in [4c43cc9137]

Overview
Comment:Fix Windows build
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 4c43cc9137b9e466a15979a220946d664f80d2e534ef36e93af3ecc77246a6d8
User & Date: js on 2024-06-17 01:02:51
Other Links: manifest | tags
Context
2024-06-17
21:08
Always use <ObjFW/ObjFW.h> in documentation check-in: 164f2fb4bf user: js tags: trunk
01:02
Fix Windows build check-in: 4c43cc9137 user: js tags: trunk
00:59
Fix Nintendo DS / 3DS / Switch / Wii check-in: 02797b8805 user: js tags: trunk
Changes

Modified src/hid/OHXInputGameController.h from [2116ecadbe] to [986c587ab0].

19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

#import "OHGameController.h"

#include <windows.h>

OF_ASSUME_NONNULL_BEGIN

@class OHXbox360Gamepad;

@interface OHXInputGameController: OHGameController
{
	DWORD _index;
	OFNumber *_Nullable _vendorID, *_Nullable _productID;
	OHXbox360Gamepad *_extendedGamepad;
}

- (instancetype)initWithIndex: (DWORD)index;
@end

OF_ASSUME_NONNULL_END







|





|






19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

#import "OHGameController.h"

#include <windows.h>

OF_ASSUME_NONNULL_BEGIN

@class OHXboxGamepad;

@interface OHXInputGameController: OHGameController
{
	DWORD _index;
	OFNumber *_Nullable _vendorID, *_Nullable _productID;
	OHXboxGamepad *_extendedGamepad;
}

- (instancetype)initWithIndex: (DWORD)index;
@end

OF_ASSUME_NONNULL_END