예제 #1
0
파일: Structs.cs 프로젝트: zhubin-12/32feet
 internal BtSdkCallbackStru(NativeMethods.Btsdk_UserHandle_Pin_Req_Ind_Func pinReqIndFunc)
 {
     _type = StackConsts.CallbackType.PIN_CODE_IND;
     _func = pinReqIndFunc;
 }
예제 #2
0
파일: Structs.cs 프로젝트: zhubin-12/32feet
 internal BtSdkCallbackStru(NativeMethods.Btsdk_Inquiry_Complete_Ind_Func inquiryCompleteIndFunc)
 {
     _type = StackConsts.CallbackType.INQUIRY_COMPLETE_IND;
     _func = inquiryCompleteIndFunc;
 }
예제 #3
0
파일: Structs.cs 프로젝트: zhubin-12/32feet
 internal BtSdkCallbackStru(NativeMethods.Btsdk_Connection_Event_Ind_Func connectionEventIndFunc)
 {
     _type = StackConsts.CallbackType.CONNECTION_EVENT_IND;
     _func = connectionEventIndFunc;
 }
예제 #4
0
파일: Structs.cs 프로젝트: zhubin-12/32feet
            readonly Delegate                                     _func; /*callback function*/

            internal BtSdkCallbackStru(NativeMethods.Btsdk_Inquiry_Result_Ind_Func inquiryResultIndFunc)
            {
                _type = StackConsts.CallbackType.INQUIRY_RESULT_IND;
                _func = inquiryResultIndFunc;
            }