Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygengetuname.c
Go to the documentation of this file.
00001 /* 00002 * PROJECT: Unicode name dll 00003 * FILE: dll\win32\getuname\getuname.c 00004 * PURPOSE: Main file 00005 * PROGRAMMERS: Dmitry Chapyshev (dmitry@reactos.org) 00006 */ 00007 00008 #include <windows.h> 00009 00010 int 00011 WINAPI 00012 GetUName(IN WORD wCharCode, 00013 OUT LPWSTR lpBuf) 00014 { 00015 wcscpy(lpBuf, L"Undefined"); 00016 return 0; 00017 } 00018 00019 00020 BOOL 00021 WINAPI 00022 DllMain(IN HINSTANCE hinstDLL, 00023 IN DWORD dwReason, 00024 IN LPVOID lpvReserved) 00025 { 00026 switch (dwReason) 00027 { 00028 case DLL_PROCESS_ATTACH: 00029 break; 00030 } 00031 00032 return TRUE; 00033 } Generated on Sat May 26 2012 04:22:13 for ReactOS by
1.7.6.1
|