Move project common code into include

This commit is contained in:
topjohnwu
2023-05-23 21:30:30 -07:00
parent 7087badf87
commit 8e8f01f8b5
10 changed files with 15 additions and 15 deletions
+8
View File
@@ -0,0 +1,8 @@
// Expose constant strings as macros so that we can use concat!() on these values
#[macro_export]
macro_rules! LOGFILE {
() => {
"/cache/magisk.log"
};
}