亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? m5apiw32.h

?? 關于機器人的手臂程序
?? H
?? 第 1 頁 / 共 3 頁
字號:

// ---- FEEDBACK SETUP -----------
#define P3502_SETUP_ENCODER_FEEDBACK		0x00000001L
#define P3502_SETUP_RESOLVER_FEEDBACK		0x00000002L
#define P3502_SETUP_ABSOLUTE_FEEDBACK		0x00000004L
// ---- DIGITAL IO SETUP ---------
#define P3502_SETUP_4IN_4OUT                0x00000008L
#define P3502_SETUP_3IN_ENCODER_IN			0x00000010L
#define P3502_SETUP_3IN_ENCODER_OUT			0x00000020L
// ---- COMM INTERFACE -----------
#define P3502_SETUP_RS232					0x00000040L
#define P3502_SETUP_RS485HD					0x00000080L
#define P3502_SETUP_RS485FD					0x00000100L
#define P3502_SETUP_CAN						0x00000200L
#define P3502_SETUP_PROFIBUS				0x00000400L
// ---- CAN ID SETUP -------------
#define P3502_SETUP_USE_M3ID				0x00000800L
#define P3502_SETUP_USE_M4ID				0x00001000L
#define P3502_SETUP_USE_CANOPEN				0x00002000L
// ---- MOTOR SETUP --------------
#define P3502_SETUP_INVERT_MOTORDIR         0x00004000L
// ---- INPUT USAGE --------------
#define P3502_SETUP_USE_SW2_AS_ENABLE		0x00008000L
#define P3502_SETUP_USE_SW2_AS_BRAKE		0x00010000L
// ---- OUTPUT USAGE -------------
#define P3502_SETUP_ERROR_TO_OUT0			0x00020000L
// ---- COUNTER SETUP ------------
#define P3502_SETUP_INVERT_COUNTER			0x00040000L

//-----------------------------------------------------------------------
// old PCube Functionnames
//-----------------------------------------------------------------------

#define PCube_getCubeState			PCube_getModuleState
#define PCube_getDefCubeVersion		PCube_getModuleVersion
#define PCube_getModulesIdMap		PCube_getModuleIdMap
#define PCube_getDefBurncount		PCube_getDefBurnCount
#define PCube_getDefSerialNo		PCube_getModuleSerialNo
#define PCube_getDefPulsesPerTurn	PCube_getDefIncPerTurn
#define PCube_getDefDioSetup		PCube_getDefDioData
#define PCube_getActPos				PCube_getPos
#define PCube_getActVel				PCube_getVel
#define PCube_getActPosInc			PCube_getPosInc
#define PCube_syncModule			PCube_homeModule
#define PCube_moveCurrent			PCube_moveCur
#define PCube_moveCurrentInc		PCube_moveCurInc
#define PCube_moveCurrentExtended	PCube_moveCurExtended
#define DLR_FTSInit					PCube_initDLR_FTS
#define DLR_FTSGetData				PCube_getDataDLR_FTS
#define PCube_getStatusInternal		PCube_getStateInternal
#define PCube_ConfigFromFile		PCube_configFromFile
#define PCube_getInitString			PCube_getDeviceInitString
#define PCube_getName				PCube_getDeviceName
#define PCube_getRevision			PCube_getDeviceRevision
#define PCube_setTargetVel			PCube_setRampVel
#define PCube_setTargetAcc			PCube_setRampAcc

//-----------------------------------------------------------------------
// new PCube Functionnames
//-----------------------------------------------------------------------
#ifdef __cplusplus
extern "C" {
#endif

M5DLL_API int WINAPI PCube_getDllVersion( void );
M5DLL_API int WINAPI PCube_setDllDebug( int iDebug, int iDebugLevel, int iDebugFile );

M5DLL_API int WINAPI PCube_configFromFile( const char* acFileName );
M5DLL_API int WINAPI PCube_openDevice( int* piDeviceId, const char* acInitString );
M5DLL_API int WINAPI PCube_closeDevice( int iDeviceId );
M5DLL_API int WINAPI PCube_closeDevices( void );
M5DLL_API int WINAPI PCube_getDeviceCount( void );
M5DLL_API int WINAPI PCube_getDeviceIdMap( int* aiIdMap );
M5DLL_API const char* WINAPI PCube_getDeviceRevision( int iDeviceId );
M5DLL_API const char* WINAPI PCube_getDeviceInitString( int iDeviceId );
M5DLL_API const char* WINAPI PCube_getDeviceName( int iDeviceId );
M5DLL_API int WINAPI PCube_setDeviceName( int iDeviceId, const char* acDeviceName );
M5DLL_API int WINAPI PCube_setDeviceDebug( int iDeviceId, int iDebug, int iDebugLevel, int iDebugFile );

M5DLL_API int WINAPI PCube_getModuleCount( int iDeviceId );
M5DLL_API int WINAPI PCube_getModuleIdMap( int iDeviceId, int* aiIdMap );
M5DLL_API int WINAPI PCube_getModuleState( int iDeviceId, int iModuleId, unsigned long* puiState );
M5DLL_API int WINAPI PCube_getModuleType( int iDeviceId, int iModuleId, unsigned char* pucValue );
M5DLL_API int WINAPI PCube_getModuleVersion( int iDeviceId, int iModuleId, unsigned short* puiValue );
M5DLL_API int WINAPI PCube_getModuleSerialNo( int iDeviceId, int iModuleId, unsigned long* puiValue );

M5DLL_API int WINAPI PCube_getDefConfig( int iDeviceId, int iModuleId, unsigned long* puiValue );
M5DLL_API int WINAPI PCube_getDefSetup( int iDeviceId, int iModuleId, unsigned long* puiValue );	//OS: available from 35xx 
M5DLL_API int WINAPI PCube_getDefBaudRate( int iDeviceId, int iModuleId, unsigned char* pucValue );
M5DLL_API int WINAPI PCube_getDefBurnCount( int iDeviceId, int iModuleId, unsigned char* pucValue );
M5DLL_API int WINAPI PCube_getDefGearRatio( int iDeviceId, int iModuleId, float* pfValue );
M5DLL_API int WINAPI PCube_getDefLinearRatio( int iDeviceId, int iModuleId, float* pfValue );
M5DLL_API int WINAPI PCube_getDefCurRatio( int iDeviceId, int iModuleId, float* pfValue );
M5DLL_API int WINAPI PCube_getDefBrakeTimeOut( int iDeviceId, int iModuleId, unsigned short* puiValue );
M5DLL_API int WINAPI PCube_getDefIncPerTurn( int iDeviceId, int iModuleId, unsigned long* puiValue );
M5DLL_API int WINAPI PCube_getDefDioData( int iDeviceId, int iModuleId, unsigned long* puiValue );	//OS: not available from 35xx 
M5DLL_API int WINAPI PCube_getDefA0( int iDeviceId, int iModuleId, short* piValue );
M5DLL_API int WINAPI PCube_getDefC0( int iDeviceId, int iModuleId, short* piValue );
M5DLL_API int WINAPI PCube_getDefDamp( int iDeviceId, int iModuleId, short* piValue );
M5DLL_API int WINAPI PCube_getDefHomeOffset( int iDeviceId, int iModuleId, float* pfValue );
M5DLL_API int WINAPI PCube_getDefHomeVel( int iDeviceId, int iModuleId, float* pfValue );
M5DLL_API int WINAPI PCube_getDefMinPos( int iDeviceId, int iModuleId, float* pfValue );
M5DLL_API int WINAPI PCube_getDefMaxPos( int iDeviceId, int iModuleId, float* pfValue );
M5DLL_API int WINAPI PCube_getDefMaxVel( int iDeviceId, int iModuleId, float* pfValue );
M5DLL_API int WINAPI PCube_getDefMaxAcc( int iDeviceId, int iModuleId, float* pfValue );
M5DLL_API int WINAPI PCube_getDefMaxCur( int iDeviceId, int iModuleId, float* pfValue );
M5DLL_API int WINAPI PCube_getDefMaxDeltaPos( int iDeviceId, int iModuleId, float* pfValue );

M5DLL_API int WINAPI PCube_getConfig( int iDeviceId, int iModuleId, unsigned long* puiValue );
M5DLL_API int WINAPI PCube_getIncRatio( int iDeviceId, int iModuleId, float* pValue );
M5DLL_API int WINAPI PCube_getStateDioPos( int iDeviceId, int iModuleId, unsigned long* puiShortState, unsigned char* pucDio, float* pfPos );	//OS: available from 2518 and 3518
M5DLL_API int WINAPI PCube_getDioData( int iDeviceId, int iModuleId, unsigned long* puiValue );
M5DLL_API int WINAPI PCube_getA0( int iDeviceId, int iModuleId, short* piValue );
M5DLL_API int WINAPI PCube_getC0( int iDeviceId, int iModuleId, short* piValue );
M5DLL_API int WINAPI PCube_getDamp( int iDeviceId, int iModuleId, short* piValue );
M5DLL_API int WINAPI PCube_getHomeOffset( int iDeviceId, int iModuleId, float* pValue );
M5DLL_API int WINAPI PCube_getHomeOffsetInc( int iDeviceId, int iModuleId, long* piValue );
M5DLL_API int WINAPI PCube_getHomeVel( int iDeviceId, int iModuleId, float* pfValue );		//OS: available from 2518 and 3518
M5DLL_API int WINAPI PCube_getHomeVelInc( int iDeviceId, int iModuleId, long* piValue );	//OS: available from 2518 and 3518
M5DLL_API int WINAPI PCube_getPos( int iDeviceId, int iModuleId, float* pfPos );
M5DLL_API int WINAPI PCube_getPosInc( int iDeviceId, int iModuleId, long* piValue );
M5DLL_API int WINAPI PCube_getPosCountInc( int iDeviceId, int iModuleId, long* piValue );
M5DLL_API int WINAPI PCube_getVel( int iDeviceId, int iModuleId, float* pfVel );
M5DLL_API int WINAPI PCube_getVelInc( int iDeviceId, int iModuleId, long* piValue );
M5DLL_API int WINAPI PCube_getIPolVel( int iDeviceId, int iModuleId, float* pValue );
M5DLL_API int WINAPI PCube_getCur( int iDeviceId, int iModuleId, float* pfCur );
M5DLL_API int WINAPI PCube_getCurInc( int iDeviceId, int iModuleId, short* piValue );
M5DLL_API int WINAPI PCube_getMinPos( int iDeviceId, int iModuleId, float* pfValue );
M5DLL_API int WINAPI PCube_getMinPosInc( int iDeviceId, int iModuleId, long* piValue );
M5DLL_API int WINAPI PCube_getMaxPos( int iDeviceId, int iModuleId, float* pfValue );
M5DLL_API int WINAPI PCube_getMaxPosInc( int iDeviceId, int iModuleId, long* piValue );
M5DLL_API int WINAPI PCube_getMaxVel( int iDeviceId, int iModuleId, float* pfValue );
M5DLL_API int WINAPI PCube_getMaxVelInc( int iDeviceId, int iModuleId, long* piValue );
M5DLL_API int WINAPI PCube_getMaxAcc( int iDeviceId, int iModuleId, float* pfValue );
M5DLL_API int WINAPI PCube_getMaxAccInc( int iDeviceId, int iModuleId, long* piValue );
M5DLL_API int WINAPI PCube_getMaxCur( int iDeviceId, int iModuleId, float* pfValue );
M5DLL_API int WINAPI PCube_getDeltaPos( int iDeviceId, int iModuleId, float* pfValue );
M5DLL_API int WINAPI PCube_getDeltaPosInc( int iDeviceId, int iModuleId, long* piValue );
M5DLL_API int WINAPI PCube_getMaxDeltaPos( int iDeviceId, int iModuleId, float* pfValue );
M5DLL_API int WINAPI PCube_getMaxDeltaPosInc( int iDeviceId, int iModuleId, long* piValue );
M5DLL_API int WINAPI PCube_getSavePos( int iDeviceId, int iModuleId, float* pfValue );	//OS: available from 2518 and 3518
M5DLL_API int WINAPI PCube_getSyncTime( int iDeviceId, int iModuleId, short* piValue );	//OS: available from 3602

M5DLL_API int WINAPI PCube_setConfig( int iDeviceId, int iModuleId, unsigned long uiValue );
M5DLL_API int WINAPI PCube_setDioData( int iDeviceId, int iModuleId, unsigned long uiValue );
M5DLL_API int WINAPI PCube_setA0( int iDeviceId, int iModuleId, short iValue );
M5DLL_API int WINAPI PCube_setC0( int iDeviceId, int iModuleId, short iValue );
M5DLL_API int WINAPI PCube_setDamp( int iDeviceId, int iModuleId, short iValue );
M5DLL_API int WINAPI PCube_setHomeOffset( int iDeviceId, int iModuleId, float fValue );
M5DLL_API int WINAPI PCube_setHomeOffsetInc( int iDeviceId, int iModuleId, long iValue );
M5DLL_API int WINAPI PCube_setHomeVel( int iDeviceId, int iModuleId, float fValue );	//OS: available from 2518 and 3518
M5DLL_API int WINAPI PCube_setHomeVelInc( int iDeviceId, int iModuleId, long iValue );	//OS: available from 2518 and 3518
M5DLL_API int WINAPI PCube_setRampVel( int iDeviceId, int iModuleId, float fValue );			
M5DLL_API int WINAPI PCube_setRampVelInc( int iDeviceId, int iModuleId, long iValue );
M5DLL_API int WINAPI PCube_setRampAcc( int iDeviceId, int iModuleId, float fValue );			
M5DLL_API int WINAPI PCube_setRampAccInc( int iDeviceId, int iModuleId, long iValue );
M5DLL_API int WINAPI PCube_setMinPos( int iDeviceId, int iModuleId, float fValue );
M5DLL_API int WINAPI PCube_setMinPosInc( int iDeviceId, int iModuleId, long iValue );
M5DLL_API int WINAPI PCube_setMaxPos( int iDeviceId, int iModuleId, float fValue );
M5DLL_API int WINAPI PCube_setMaxPosInc( int iDeviceId, int iModuleId, long iValue );
M5DLL_API int WINAPI PCube_setMaxVel( int iDeviceId, int iModuleId, float fValue );
M5DLL_API int WINAPI PCube_setMaxVelInc( int iDeviceId, int iModuleId, long iValue );
M5DLL_API int WINAPI PCube_setMaxAcc( int iDeviceId, int iModuleId, float fValue );
M5DLL_API int WINAPI PCube_setMaxAccInc( int iDeviceId, int iModuleId, long iValue );
M5DLL_API int WINAPI PCube_setMaxCur( int iDeviceId, int iModuleId, float fValue );
M5DLL_API int WINAPI PCube_setMaxDeltaPos( int iDeviceId, int iModuleId, float fValue );
M5DLL_API int WINAPI PCube_setMaxDeltaPosInc( int iDeviceId, int iModuleId, long iValue );
M5DLL_API int WINAPI PCube_setSyncTime( int iDeviceId, int iModuleId, short iValue );	//OS: available from 3602

M5DLL_API int WINAPI PCube_homeModule( int iDeviceId, int iModuleId );
M5DLL_API int WINAPI PCube_haltModule( int iDeviceId, int iModuleId );
M5DLL_API int WINAPI PCube_resetModule( int iDeviceId, int iModuleId );
M5DLL_API int WINAPI PCube_recalcPIDParams( int iDeviceId, int iModuleId );

M5DLL_API int WINAPI PCube_movePos( int iDeviceId, int iModuleId, float fPos );
M5DLL_API int WINAPI PCube_movePosInc( int iDeviceId, int iModuleId, long iPos );
M5DLL_API int WINAPI PCube_movePosExtended( int iDeviceId, int iModuleId, float fPos, unsigned long* puiShortState, unsigned char* pucDio, float* pfPos );
M5DLL_API int WINAPI PCube_moveRamp( int iDeviceId, int iModuleId, float fPos, float fVel, float fAcc );
M5DLL_API int WINAPI PCube_moveRampInc( int iDeviceId, int iModuleId, long iPos, long iVel, long iAcc );
M5DLL_API int WINAPI PCube_moveRampExtended( int iDeviceId, int iModuleId, float fPos, float fVel, float fAcc, unsigned long* puiState, unsigned char* pucDio, float* pfPos );
M5DLL_API int WINAPI PCube_moveVel( int iDeviceId, int iModuleId, float fVel );
M5DLL_API int WINAPI PCube_moveVelInc( int iDeviceId, int iModuleId, long iVel );
M5DLL_API int WINAPI PCube_moveVelExtended( int iDeviceId, int iModuleId, float fCur, unsigned long* puiShortState, unsigned char* pucDio, float* pfPos );
M5DLL_API int WINAPI PCube_moveCur( int iDeviceId, int iModuleId, float fCur );
M5DLL_API int WINAPI PCube_moveCurInc( int iDeviceId, int iModuleId, long iCur );
M5DLL_API int WINAPI PCube_moveCurExtended( int iDeviceId, int iModuleId, float fCur, unsigned long* puiShortState, unsigned char* pucDio, float* pfPos );
M5DLL_API int WINAPI PCube_moveStep( int iDeviceId, int iModuleId, float fPos, unsigned short uiTime );
M5DLL_API int WINAPI PCube_moveStepInc( int iDeviceId, int iModuleId, long iPos, unsigned short uiTime );
M5DLL_API int WINAPI PCube_moveStepExtended( int iDeviceId, int iModuleId, float fPos, unsigned short uiTime, unsigned long* puiShortState, unsigned char* pucDio, float* pfPos );

M5DLL_API int WINAPI PCube_homeAll( int iDeviceId );
M5DLL_API int WINAPI PCube_resetAll( int iDeviceId );
M5DLL_API int WINAPI PCube_haltAll( int iDeviceId );
M5DLL_API int WINAPI PCube_serveWatchdogAll( int iDeviceId );
M5DLL_API int WINAPI PCube_setBaudRateAll( int iDeviceId, unsigned char pucValue );
M5DLL_API int WINAPI PCube_startMotionAll( int iDeviceId );
M5DLL_API int WINAPI PCube_savePosAll( int iDeviceId );

M5DLL_API int WINAPI PCube_waitForHomeEnd( int iDeviceId, int iModuleId, unsigned long uiTime );
M5DLL_API int WINAPI PCube_waitForMotionEnd( int iDeviceId, int iModuleId, unsigned long uiTime );
M5DLL_API int WINAPI PCube_waitForRampEnd( int iDeviceId, int iModuleId, unsigned long uiTime );
M5DLL_API int WINAPI PCube_waitForRampDec( int iDeviceId, int iModuleId, unsigned long uiTime );
M5DLL_API int WINAPI PCube_waitForRampSteady( int iDeviceId, int iModuleId, unsigned long uiTime );
M5DLL_API int WINAPI PCube_waitForHomeEndAll( int iDeviceId, unsigned long uiTime );
M5DLL_API int WINAPI PCube_waitForMotionEndAll( int iDeviceId, unsigned long uiTime );
M5DLL_API int WINAPI PCube_waitForRampEndAll( int iDeviceId, unsigned long uiTime );
M5DLL_API int WINAPI PCube_waitForStartMotionAll( int iDeviceId );

M5DLL_API int WINAPI PCube_xmit8Bytes( int iDeviceId, int iModuleId, void* pBytes );
M5DLL_API int WINAPI PCube_xack8Bytes( int iDeviceId, int iModuleId, void* pBytes );
M5DLL_API int WINAPI PCube_doInternal( int iDeviceId, int iModuleId, void* pBytes );
M5DLL_API int WINAPI PCube_getStateInternal( int iDeviceId, int iModuleId, unsigned long* puiState );
M5DLL_API int WINAPI PCube_updateModuleIdMap( int iDeviceId );

M5DLL_API int WINAPI PCube_initEMS_IO( int iDeviceId, unsigned char ucType, unsigned long uiSerialNo );
M5DLL_API int WINAPI PCube_getDataEMS_DIO( int iDeviceId, int iModuleId, int iChannelId, int* piData );
M5DLL_API int WINAPI PCube_getDataEMS_AIO( int iDeviceId, int iModuleId, int iChannelId, float* pfData );
M5DLL_API int WINAPI PCube_setDataEMS_DIO( int iDeviceId, int iModuleId, int iChannelId, int iData );
M5DLL_API int WINAPI PCube_setDataEMS_AIO( int iDeviceId, int iModuleId, int iChannelId, float fData );

M5DLL_API int WINAPI PCube_initDLR_FTS( int iDeviceId );
M5DLL_API int WINAPI PCube_getDataDLR_FTS( int iDeviceId, float* pfDataFX, float* pfDataFY, float* pfDataFZ, float* pfDataTX, float* pfDataTY, float* pfDataTZ, long* piState );

M5DLL_API int WINAPI PCube_getDataSCHUNK_FTC( int iDeviceId, int iModulId, int iChannelTypeId, float* pfDataFX, float* pfDataFY, float* pfDataFZ, float* pfDataTX, float* pfDataTY, float* pfDataTZ, short* piState );
M5DLL_API int WINAPI PCube_setNullSCHUNK_FTC( int iDeviceId, int iModulId, short* piState );

M5DLL_API int WINAPI PCube_getDataMP55_IO( int iDeviceId, int iModuleId, float* pfData );
M5DLL_API int WINAPI PCube_setTaraMP55_IO( int iDeviceId, int iModuleId, float fData );

#ifdef __cplusplus
	}
#endif

#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91在线播放网址| 在线观看中文字幕不卡| 欧美日韩一区二区电影| 亚洲美女淫视频| fc2成人免费人成在线观看播放| 久久综合色婷婷| 麻豆视频一区二区| 精品久久久久久久久久久久久久久 | 在线欧美日韩国产| 亚洲欧美日韩综合aⅴ视频| 99久久久国产精品| 最新日韩在线视频| 欧美三级电影在线看| 午夜视频在线观看一区二区| 欧美午夜精品一区| 丝瓜av网站精品一区二区| 欧美日韩一区中文字幕| 国产午夜亚洲精品不卡| 不卡免费追剧大全电视剧网站| 一区二区三区免费看视频| 欧美在线播放高清精品| 国产精品美女视频| 激情综合网最新| 精品粉嫩aⅴ一区二区三区四区| 国产一区二区精品久久| 综合在线观看色| 精品伦理精品一区| 亚洲国产精品精华液2区45| 欧美吞精做爰啪啪高潮| 日韩欧美一级二级| 精品区一区二区| 综合久久久久久| 一区二区三区四区乱视频| 日韩激情一区二区| 国产乱色国产精品免费视频| 色又黄又爽网站www久久| 欧美片在线播放| 欧美成人精品3d动漫h| 久久影视一区二区| 中文字幕日韩一区| 国产精品短视频| 国产精品人人做人人爽人人添| 亚洲精品一线二线三线| 久久久无码精品亚洲日韩按摩| 欧美高清精品3d| 久久久蜜桃精品| 亚洲国产高清aⅴ视频| 中文字幕av一区 二区| 欧美国产视频在线| 亚洲美女屁股眼交3| 国产精品视频第一区| 国产精品每日更新| 一片黄亚洲嫩模| 国产蜜臀97一区二区三区| 欧美成人精品福利| 欧美日本一道本| 在线亚洲欧美专区二区| 日韩久久一区二区| 日韩美女啊v在线免费观看| 91网站最新网址| 狠狠狠色丁香婷婷综合激情| 国产午夜精品一区二区三区嫩草| 欧美久久久久久久久中文字幕| 欧亚洲嫩模精品一区三区| 一区二区三区国产豹纹内裤在线| 成人免费视频免费观看| 亚洲一区二区在线免费看| 精品成人在线观看| 欧美系列一区二区| 欧美性一级生活| 在线视频欧美区| 久久嫩草精品久久久精品一| 国产精品久久久久毛片软件| 亚洲高清视频在线| 欧美色视频在线观看| 久久亚洲私人国产精品va媚药| 国产主播一区二区三区| 26uuu欧美日本| 国产成人在线视频网址| 中文字幕亚洲精品在线观看| 欧美日韩精品欧美日韩精品 | 久久精品国产精品亚洲综合| 3d动漫精品啪啪| 久久99精品国产麻豆婷婷洗澡| 欧美精品一区二区三| 国产成a人无v码亚洲福利| 2023国产精品自拍| 激情图片小说一区| 国产亚洲欧美色| 91蜜桃在线免费视频| 久久久99精品久久| 懂色av一区二区三区蜜臀| 久久午夜羞羞影院免费观看| 国产成a人亚洲精| 亚洲欧美日韩小说| 欧美精三区欧美精三区| 日本va欧美va精品发布| 日韩一级成人av| 蜜桃av一区二区| xnxx国产精品| 国产一区91精品张津瑜| 欧美xxxx老人做受| 最新久久zyz资源站| 日韩三级av在线播放| 大白屁股一区二区视频| 欧美日韩亚洲综合| 精品国产三级a在线观看| 亚洲一级不卡视频| 色综合中文综合网| 色综合久久综合中文综合网| 久久综合狠狠综合久久激情| 亚洲一级二级在线| 亚洲激情图片一区| 色综合天天做天天爱| 国产日韩成人精品| 久久国产欧美日韩精品| 日韩一区二区视频| 成人免费高清在线| 夜夜嗨av一区二区三区中文字幕 | 国产日产欧美一区| 中文字幕一区二区三区乱码在线| 国产aⅴ精品一区二区三区色成熟| 一区精品在线播放| 日韩免费一区二区三区在线播放| 精品一区免费av| 伦理电影国产精品| 久久精品视频网| 欧美大片一区二区三区| 91精品国产麻豆| 日韩美女视频在线| 久久亚洲春色中文字幕久久久| 欧美不卡在线视频| 久久久久久影视| 1024亚洲合集| 亚洲国产精品久久不卡毛片 | 亚洲女同女同女同女同女同69| 中文字幕中文字幕一区二区| 一区二区三区四区蜜桃| 丝袜亚洲另类欧美综合| 欧美激情一区二区三区蜜桃视频| 欧美性大战久久久| 99国产精品一区| 成人av资源站| 久久99热国产| 日本va欧美va瓶| 亚洲123区在线观看| 亚洲国产精品久久艾草纯爱 | 国产91富婆露脸刺激对白| 久久成人免费日本黄色| 精品一区二区影视| 极品美女销魂一区二区三区免费| 另类中文字幕网| 国产精品一区二区黑丝| 成人爱爱电影网址| 欧美日韩aaa| 日韩三级精品电影久久久| 99精品国产视频| 丁香婷婷综合五月| 91精品久久久久久久91蜜桃| 国产精品久99| 精品美女一区二区三区| 日韩一区二区免费在线观看| 99re亚洲国产精品| 国产成人精品免费在线| 丝袜诱惑制服诱惑色一区在线观看 | 国产美女一区二区三区| 成人黄色电影在线| 欧美午夜电影在线播放| 久久久青草青青国产亚洲免观| 免费黄网站欧美| 欧美一区二区三区四区久久| 日本中文字幕一区二区视频 | 亚洲曰韩产成在线| 不卡一区在线观看| 国产精品入口麻豆九色| 国产激情视频一区二区三区欧美| 久久久www成人免费毛片麻豆 | 国产精品久久久久久久岛一牛影视| 久久久久高清精品| 一区二区三区鲁丝不卡| 日韩av电影免费观看高清完整版 | 欧美一级二级在线观看| 日韩午夜中文字幕| 成人免费小视频| 三级亚洲高清视频| 丁香天五香天堂综合| 91精品国产综合久久香蕉麻豆| 国产精品久久久久永久免费观看| 三级久久三级久久| 国产精品久久久久久久久果冻传媒 | 国产一区二区伦理| 亚洲黄色小视频| 日韩欧美一级二级| 色综合天天综合在线视频| 麻豆成人在线观看| 夜夜精品视频一区二区 | 欧美午夜片在线看| 美国毛片一区二区三区| 日韩一区在线播放| 久久嫩草精品久久久精品|