# fsCommBusUnregister The **fsCommBusUnregister** is used to unregister one or more events that have previously been registered in WASM.   ##### Syntax ``` wasm int fsCommBusUnregister( const char* eventName, fsCommBusWasmCallback callback ); ```   ##### Members
ParametersDescription
eventNameThe name of the event that you want to unregister.
callback

The callback associated with the event to unregister. This can be nullptr if you do not wish to specify a callback.

The default value is nullptr.

  ##### Return Values The function returns the number of the event that has been unregistered.   ##### Remarks N/A