ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

getuname.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 doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.