Nuke remaining .proc/s (#7981)

Co-authored-by: Selis <sirlionfur@hotmail.de>
This commit is contained in:
Raeschen
2024-03-16 17:04:00 +01:00
committed by GitHub
co-authored by Selis
parent 012fab0160
commit 0ab7b1cdee
23 changed files with 46 additions and 46 deletions
+3 -3
View File
@@ -30,12 +30,12 @@
CALLBACK(src, .some_proc_here)
when the above doesn't apply:
.proc/procname
PROC_REF(procname)
Example:
CALLBACK(src, .proc/some_proc_here)
CALLBACK(src, PROC_REF(some_proc_here))
proc defined on a parent of a some type:
Example: /some/type/.proc/some_proc_here
Example: /some/type/PROC_REF(some_proc_here)
Other wise you will have to do the full typepath of the proc (/type/of/thing/proc/procname)
*/