-
Notifications
You must be signed in to change notification settings - Fork 448
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1130 from mrolappe/darlingserver-stubs-ImageCaptu…
…reCore ImageCaptureCore framework stubs
- Loading branch information
Showing
82 changed files
with
2,509 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
project(ImageCaptureCore) | ||
|
||
set(DYLIB_COMPAT_VERSION "1.0.0") | ||
set(DYLIB_CURRENT_VERSION "1.0.0") | ||
|
||
add_framework(ImageCaptureCore | ||
FAT | ||
CURRENT_VERSION | ||
VERSION "A" | ||
|
||
SOURCES | ||
src/ImageCaptureCore.m | ||
src/ICScannerFeatureProps.m | ||
src/ICScannerFeatureEnumeration.m | ||
src/ICScannerFeatureBooleanProps.m | ||
src/ICScannerBandData.m | ||
src/ICDeviceBrowser.m | ||
src/ICScannerFunctionalUnitTransparencyProps.m | ||
src/ICScannerFunctionalUnitFlatbedProps.m | ||
src/ICCallbackInfo.m | ||
src/ICCommand.m | ||
src/ICCommandCenter.m | ||
src/ICScannerFeatureEnumerationProps.m | ||
src/ICScannerFeatureTemplateProps.m | ||
src/ICDeviceBrowserPrivateData.m | ||
src/ICScannerImageRep.m | ||
src/ICClientManager.m | ||
src/ICClient.m | ||
src/ICScannerFunctionalUnitDocumentFeederProps.m | ||
src/ICScannerFeatureRange.m | ||
src/ICDevice.m | ||
src/ICCameraDevice.m | ||
src/ICCameraFile.m | ||
src/ICAccessManager.m | ||
src/ICCameraFolder.m | ||
src/ICCameraItem.m | ||
src/ICScannerFeatureBoolean.m | ||
src/ICScannerFunctionalUnit.m | ||
src/ICScannerFeatureRangeProps.m | ||
src/ICScannerFunctionalUnitFlatbed.m | ||
src/ICScannerFunctionalUnitPositiveTransparency.m | ||
src/ICScannerFunctionalUnitNegativeTransparency.m | ||
src/ICScannerFeature.m | ||
src/ICScannerFeatureTemplate.m | ||
src/ICScannerFunctionalUnitDocumentFeeder.m | ||
src/ICDeviceAccessManager.m | ||
src/ICMasterDeviceBrowser.m | ||
src/ICScannerFunctionalUnitProps.m | ||
src/ICScannerProperties.m | ||
src/ICScannerDevice.m | ||
|
||
DEPENDENCIES | ||
system | ||
objc | ||
Foundation | ||
) |
24 changes: 24 additions & 0 deletions
24
src/frameworks/ImageCaptureCore/include/ImageCaptureCore/ICAccessManager.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface ICAccessManager : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/ImageCaptureCore/include/ImageCaptureCore/ICCallbackInfo.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface ICCallbackInfo : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/ImageCaptureCore/include/ImageCaptureCore/ICCameraDevice.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface ICCameraDevice : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/ImageCaptureCore/include/ImageCaptureCore/ICCameraFile.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface ICCameraFile : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/ImageCaptureCore/include/ImageCaptureCore/ICCameraFolder.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface ICCameraFolder : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/ImageCaptureCore/include/ImageCaptureCore/ICCameraItem.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface ICCameraItem : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/ImageCaptureCore/include/ImageCaptureCore/ICClient.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface ICClient : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/ImageCaptureCore/include/ImageCaptureCore/ICClientManager.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface ICClientManager : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/ImageCaptureCore/include/ImageCaptureCore/ICCommand.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface ICCommand : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/ImageCaptureCore/include/ImageCaptureCore/ICCommandCenter.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface ICCommandCenter : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/ImageCaptureCore/include/ImageCaptureCore/ICDevice.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface ICDevice : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/ImageCaptureCore/include/ImageCaptureCore/ICDeviceAccessManager.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface ICDeviceAccessManager : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/ImageCaptureCore/include/ImageCaptureCore/ICDeviceBrowser.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface ICDeviceBrowser : NSObject | ||
|
||
@end |
Oops, something went wrong.