From 3fdd24aea06a9bf38d9d34fb8bccbb7023ed3100 Mon Sep 17 00:00:00 2001 From: Jonathan Beck Date: Sat, 13 Dec 2008 12:21:03 +0100 Subject: Fork libiphone and remove anything non plist specific. Update library and make related files acordingly . --- src/AFC.h | 77 --------------------------------------------------------------- 1 file changed, 77 deletions(-) delete mode 100644 src/AFC.h (limited to 'src/AFC.h') diff --git a/src/AFC.h b/src/AFC.h deleted file mode 100644 index 5e4d17c..0000000 --- a/src/AFC.h +++ /dev/null @@ -1,77 +0,0 @@ -/* - * AFC.h - * Defines and structs and the like for the built-in AFC client - * - * Copyright (c) 2008 Zach C. All Rights Reserved. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#include "usbmux.h" -#include "iphone.h" - -#include -#include -#include -#include -#include - -typedef struct { - uint32_t header1, header2; - uint32_t entire_length, unknown1, this_length, unknown2, packet_num, unknown3, operation, unknown4; -} AFCPacket; - -typedef struct { - uint32_t filehandle, unknown1, size, unknown2; -} AFCFilePacket; - -typedef struct __AFCToken { - struct __AFCToken *last, *next; - char *token; -} AFCToken; - -struct iphone_afc_client_int { - iphone_umux_client_t connection; - AFCPacket *afc_packet; - int file_handle; - int lock; - GMutex *mutex; -}; - -struct iphone_afc_file_int { - uint32_t filehandle, blocks, size, type; -}; - - - -enum { - AFC_ERROR = 0x00000001, - AFC_GET_INFO = 0x0000000a, - AFC_GET_DEVINFO = 0x0000000b, - AFC_LIST_DIR = 0x00000003, - AFC_MAKE_DIR = 0x00000009, - AFC_DELETE = 0x00000008, - AFC_RENAME = 0x00000018, - AFC_SUCCESS_RESPONSE = 0x00000002, - AFC_FILE_OPEN = 0x0000000d, - AFC_FILE_CLOSE = 0x00000014, - AFC_FILE_SEEK = 0x00000011, - AFC_FILE_TRUNCATE = 0x00000015, - AFC_FILE_HANDLE = 0x0000000e, - AFC_READ = 0x0000000f, - AFC_WRITE = 0x00000010 -}; - -uint32_t iphone_afc_get_file_handle(iphone_afc_file_t file); -- cgit v1.1-32-gdbae