-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#pragma once | ||
|
||
#include <android/log.h> | ||
#include <cstdarg> | ||
|
||
#define WFB_ERR(...) do{ __android_log_print( ANDROID_LOG_ERROR, "wfb-ng", __VA_ARGS__); } while(0) | ||
#define WFB_INFO(...) do{ __android_log_print( ANDROID_LOG_INFO, "wfb-ng", __VA_ARGS__); } while(0) | ||
|
||
#define WFB_DBG(...) (void(0)) | ||
|
||
#define ANDROID_IPC_MSG(...) do{ __android_log_print( ANDROID_LOG_INFO, "wfb-ng", __VA_ARGS__); } while(0) | ||
#define IPC_MSG(...) do{ __android_log_print( ANDROID_LOG_INFO, "wfb-ng", __VA_ARGS__); } while(0) | ||
#define IPC_MSG_SEND() (void)0 |