mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
19
Src/replicant/nx/win/nxlog.c
Normal file
19
Src/replicant/nx/win/nxlog.c
Normal file
@@ -0,0 +1,19 @@
|
||||
#include "nxlog.h"
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
//#include <windows.h>
|
||||
|
||||
static char *nx_log_tag = "libreplicant";
|
||||
#define MAX_FMT_SIZE 512
|
||||
|
||||
void NXLog(int priority, char *fmt, ...){
|
||||
|
||||
char formatted_string[MAX_FMT_SIZE];
|
||||
|
||||
va_list argptr;
|
||||
va_start(argptr,fmt);
|
||||
vsnprintf(formatted_string, MAX_FMT_SIZE, fmt, argptr);
|
||||
va_end(argptr);
|
||||
|
||||
// OutputDebugString(formatted_string);
|
||||
}
|
Reference in New Issue
Block a user