mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Plugin API: Add RmLog and RmLogF functions
These functions take a `void* rm` parameter that is used to populate the Source field in the log.
This commit is contained in:
@ -56,7 +56,11 @@ enum RmGetType
|
||||
RMG_SKINWINDOWHANDLE = 4
|
||||
};
|
||||
|
||||
LIBRARY_EXPORT BOOL LSLog(int type, LPCWSTR unused, LPCWSTR message);
|
||||
LIBRARY_EXPORT void __stdcall RmLog(void* rm, int level, LPCWSTR message);
|
||||
|
||||
LIBRARY_EXPORT void __cdecl RmLogF(void* rm, int level, LPCWSTR format, ...);
|
||||
|
||||
LIBRARY_EXPORT BOOL __cdecl LSLog(int level, LPCWSTR unused, LPCWSTR message);
|
||||
|
||||
//
|
||||
// Wrapper functions
|
||||
|
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user