Artifact 8843ef3219ed57959af4a3ed4ea926f4be7fc3a7:
- File pcsc/pcsc_nacl_init.cc — part of check-in [b209244e1b] at 2016-04-14 17:38:51 on branch trunk — Removed unused parameters in NaCl PCSC initialization (user: rkeene, size: 376) [annotate] [blame] [check-ins using]
#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) { new google_smart_card::PcscLiteOverRequesterGlobal(&tmr, instance, core); return; } bool pcscNaClHandleMessage(const pp::Var &message) { return(tmr.OnMessageReceived(message)); }