Skip to content

Commit 3372454

Browse files
committed
Revert "FIX: Remove unnecessary framework files"
This reverts commit 72d38fb.
1 parent ef45d40 commit 3372454

File tree

16 files changed

+5658
-0
lines changed

16 files changed

+5658
-0
lines changed

libedfapi/macos/edfapi.framework/Headers/edf.h

Lines changed: 1048 additions & 0 deletions
Large diffs are not rendered by default.

libedfapi/macos/edfapi.framework/Headers/edf_data.h

Lines changed: 604 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/**
2+
* Copyright (c) 1996-2023, SR Research Ltd., All Rights Reserved
3+
*
4+
* For use by SR Research licencees only. Redistribution and use in source
5+
* and binary forms, with or without modification, are NOT permitted.
6+
*
7+
* Redistributions in binary form must reproduce the above copyright
8+
* notice, this list of conditions and the following disclaimer in
9+
* the documentation and/or other materials provided with the distribution.
10+
*
11+
* Neither name of SR Research Ltd nor the name of contributors may be used
12+
* to endorse or promote products derived from this software without
13+
* specific prior written permission.
14+
*
15+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
16+
* IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17+
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
18+
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR
19+
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20+
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21+
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
22+
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
23+
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
24+
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26+
*/
27+
/* EYELINK APPLICATION CODE */
28+
/* PLATFORM-PORTABLE TYPES */
29+
/* MAY NEED TO BE MODIFIED */
30+
/* FOR Mac, etc. */
31+
32+
/*#define FARTYPE _far */ /* for some mixed-model builds */
33+
#define FARTYPE /* make blank for most DOS, 32-bit, ANSI C */
34+
35+
#ifdef __cplusplus /* For C++ definitions */
36+
extern "C" {
37+
#endif
38+
39+
#ifndef _BASETSD_H_ /* windows header */
40+
#ifndef BYTEDEF
41+
#define BYTEDEF 1
42+
43+
typedef unsigned char byte;
44+
typedef short INT16;
45+
typedef int INT32;
46+
typedef unsigned short UINT16;
47+
typedef unsigned int UINT32;
48+
#endif
49+
#endif
50+
51+
#ifndef _MSC_VER
52+
typedef unsigned long long UINT64 ;
53+
typedef long long INT64 ;
54+
#else
55+
typedef unsigned __int64 UINT64 ;
56+
typedef __int64 INT64 ;
57+
#endif
58+
59+
#ifndef MICRODEF
60+
#define MICRODEF 1
61+
typedef struct {
62+
INT32 msec; /* SIGNED for offset computations */
63+
INT16 usec;
64+
} MICRO ;
65+
#endif
66+
67+
#ifdef __cplusplus /* For C++ definitions */
68+
}
69+
#endif
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>BuildMachineOSBuild</key>
6+
<string>16G2136</string>
7+
<key>CFBundleDevelopmentRegion</key>
8+
<string>English</string>
9+
<key>CFBundleExecutable</key>
10+
<string>edfapi</string>
11+
<key>CFBundleGetInfoString</key>
12+
<string>String edfapi version 4.2.762.0, © 2002-2023 SR Research Ltd. All rights reserved. EyeLink and the Eyelink logo are registered trademarks of SR Research Ltd.</string>
13+
<key>CFBundleIdentifier</key>
14+
<string>com.srresearch.edfapi</string>
15+
<key>CFBundleInfoDictionaryVersion</key>
16+
<string>6.0</string>
17+
<key>CFBundlePackageType</key>
18+
<string>FMWK</string>
19+
<key>CFBundleShortVersionString</key>
20+
<string>4.2.762.0</string>
21+
<key>CFBundleSignature</key>
22+
<string>????</string>
23+
<key>CFBundleSupportedPlatforms</key>
24+
<array>
25+
<string>MacOSX</string>
26+
</array>
27+
<key>CFBundleVersion</key>
28+
<string>4.2.762.0</string>
29+
<key>CSResourcesFileMapped</key>
30+
<true/>
31+
<key>DTCompiler</key>
32+
<string>com.apple.compilers.llvm.clang.1_0</string>
33+
<key>DTPlatformBuild</key>
34+
<string>9C40b</string>
35+
<key>DTPlatformName</key>
36+
<string>macosx</string>
37+
<key>DTPlatformVersion</key>
38+
<string>GM</string>
39+
<key>DTSDKBuild</key>
40+
<string>17C76</string>
41+
<key>DTSDKName</key>
42+
<string>macosx10.13</string>
43+
<key>DTXcode</key>
44+
<string>0920</string>
45+
<key>DTXcodeBuild</key>
46+
<string>9C40b</string>
47+
<key>LSMinimumSystemVersion</key>
48+
<string>10.9</string>
49+
<key>UIDeviceFamily</key>
50+
<array>
51+
<integer>1</integer>
52+
<integer>2</integer>
53+
</array>
54+
</dict>
55+
</plist>

0 commit comments

Comments
 (0)