mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 16:48:16 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
33 lines
530 B
C
33 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;
|
|
}
|