NaCl libpcsc

Artifact [f3e792cf0d]
Login

Artifact f3e792cf0d3372085fb64a924e4caf3efa0b4dc3:


#include <ppapi/cpp/core.h>
#include <ppapi/cpp/instance.h>
#include "global.h"

static google_smart_card::TypedMessageRouter tmr;

void pcscNaClInit(pp::Instance *instance, pp::Core *core, const char *smartcardManagerAppId, const char *clientId) {
	new google_smart_card::PcscLiteOverRequesterGlobal(&tmr, instance, core);

	return;

	/* UNREACH: These are no longer used */
	smartcardManagerAppId = smartcardManagerAppId;
	clientId = clientId;
}

bool pcscNaClHandleMessage(const pp::Var &message) {
	return(tmr.OnMessageReceived(message));
}