auf gefunde Ausdrücke greift man mit z.b. \0 zu, \0 gibt den ersten gefunden Ausdruck zurück.
möchte man z.b. in allen DllImport Statements ,CallingConvention=CallingConvention.Cdecl hinzufügen, bsp:
[DllImport(DRIVER_DLL_NAME, EntryPoint = "is_StopLiveVideo")]
suchen: EntryPoint.*"
ersetzen: \0, CallingConvention=CallingConvention.Cdecl
Ergebnis:
[DllImport(DRIVER_DLL_NAME, EntryPoint = "is_StopLiveVideo",CallingConvention=CallingConvention.Cdecl)]
No comments:
Post a Comment