reactos/dll/win32/getuname/getuname.c
Hermès Bélusca-Maïto 65ce146169 Create a branch for working on csrss and co.
svn path=/branches/ros-csrss/; revision=57561
2012-10-14 13:04:31 +00:00

34 lines
530 B
C

/*
* PROJECT: Unicode name dll
* FILE: dll\win32\getuname\getuname.c
* PURPOSE: Main file
* PROGRAMMERS: Dmitry Chapyshev (dmitry@reactos.org)
*/
#include <windows.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;
}