![]() |
AIDeviceInfo.hGo to the documentation of this file.00001 #ifndef __AIDeviceInfo__ 00002 #define __AIDeviceInfo__ 00003 00004 /******************************************************************************** 00005 * ADOBE SYSTEMS INCORPORATED 00006 * Copyright 2015 Adobe Systems Incorporated 00007 * All Rights Reserved. 00008 00009 * NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the 00010 * terms of the Adobe license agreement accompanying it. If you have received this file from a 00011 * source other than Adobe, then your use, modification, or distribution of it requires the prior 00012 * written permission of Adobe. 00013 * 00014 * 00015 * Author: Vivek Agrawal 00016 * Created: 09/10/2015 00017 * Purpose: Adobe Illustrator Device Info Suite 00018 **************************************************************************/ 00019 00020 00021 /******************************************************************************* 00022 ** 00023 ** Imports 00024 ** 00025 **/ 00026 00027 #ifndef __AITypes__ 00028 #include "AITypes.h" 00029 #endif 00030 00031 #ifndef __AIArt__ 00032 #include "AIArt.h" 00033 #endif 00034 00035 #include "AIHeaderBegin.h" 00036 00040 /******************************************************************************* 00041 ** 00042 ** Constants 00043 ** 00044 **/ 00045 00046 #define kAIDeviceInfoSuite "AI DeviceInfo Suite" 00047 #define kAIDeviceInfoSuiteVersion1 AIAPI_VERSION(1) 00048 #define kAIDeviceInfoSuiteVersion kAIDeviceInfoSuiteVersion1 00049 #define kAIDeviceInfoVersion kAIDeviceInfoSuiteVersion 00050 00051 00052 /******************************************************************************* 00053 ** 00054 ** Suite 00055 ** 00056 **/ 00057 00058 00067 struct AIDeviceInfoSuite { 00068 00069 /* 00070 function: To be used to check whether a tablet is connected or not. This only works for Wacom tablets. 00071 @param: 00072 @out out: An AIBoolean reference in which to return the status whether a tablet is connected or not. 00073 */ 00074 AIAPI AIErr(*IsTabletConnected) (AIBoolean& out); 00075 00076 }; 00077 00078 #include "AIHeaderEnd.h" 00079 00080 #endif |
||||||
|
![]() |
|