Latest compatible version of Classicube from the original GitHub repository (https://github.com/ClassiCube/ClassiCube) that can be compiled on Classicube for PowerMac PPC running Mac OS X 10.4.

This commit is contained in:
Andrei Alexandru
2025-12-17 13:17:57 +02:00
commit c71492f846
1248 changed files with 422858 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
/*
* Copyright (c) 2021 Max Thomas
* This file is part of DSiWifi and is distributed under the MIT license.
* See dsiwifi_license.txt for terms of use.
*/
#ifndef _DSIWIFI_HTC_H
#define _DSIWIFI_HTC_H
#include "common.h"
#define HTC_MSG_READY (1)
#define HTC_MSG_CONN_SVC (2)
#define HTC_MSG_CONN_SVC_RESP (3)
#define HTC_MSG_SETUP_COMPLETE (4)
#define HTC_MSG_SETUP_COMPLETE_EX (5)
#define HTC_MSG_UNK_0201 (0x0201)
#define HTC_MSG_UNK_0401 (0x0401)
void htc_handle_pkt(u16 pkt_cmd, u8* pkt_data, u32 len, u32 ack_len);
void htc_send_pkt(u16 htc_type, u8 ack_type, const void* data, u16 len);
#endif // _DSIWIFI_HTC_H