reactos/dll/win32/getuname/getuname.c
2013-06-16 22:01:41 +00:00

34 lines
529 B
C

/*
* PROJECT: Unicode name dll
* FILE: dll\win32\getuname\getuname.c
* PURPOSE: Main file
* PROGRAMMERS: Dmitry Chapyshev (dmitry@reactos.org)
*/
#include <windef.h>
int
WINAPI
GetUName(IN WORD wCharCode,
OUT LPWSTR lpBuf)
{
wcscpy(lpBuf, L"Undefined");
return 0;
}
BOOL
WINAPI
DllMain(IN HINSTANCE hinstDLL,
IN DWORD dwReason,
IN LPVOID lpvReserved)
{
switch (dwReason)
{
case DLL_PROCESS_ATTACH:
break;
}
return TRUE;
}