DecryptionCallbackHandler Callback¶
Definition¶
Represents the method that will handle a decryption callback.
decryption_callback_handler(context: object, args: DecryptionArgs) -> int
Parameters
context
objectin The callback context.args
DecryptionArgsin The decryption callback arguments. See DecryptionArgs for details.
Returns
typedef DecryptionCallbackHandler = int Function(Object context, DecryptionArgs args)
Parameters
context
Objectin The callback context.args
DecryptionArgsin The decryption callback arguments. See DecryptionArgs for details.
Returns
public delegate int _DecryptionCallbackHandler(IntPtr context, IntPtr args);
Parameters
context
IntPtrin The callback context.args
DecryptionArgsin The decryption callback arguments. See DecryptionArgs for details.
Returns
@FunctionalInterface
public interface DecryptionCallbackHandler {
int callback(Object context, DecryptionArgs args)
}
Parameters
context
Objectin The callback context.args
DecryptionArgsin The decryption callback arguments. See DecryptionArgs for details.
Returns
public func decryptionCallbackHandler(context: void, args: DecryptionArgs) throws
Parameters
context
voidin The callback context.args
DecryptionArgsin The decryption callback arguments. See DecryptionArgs for details.
Returns
typedef int (* id3BiosealDecryptionCallbackHandler) (
void * context,
ID3_BIOSEAL_DECRYPTION_ARGS hArgs)
Parameters
context
void *in The callback context.in The decryption callback arguments. See DecryptionArgs for details.
Returns