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

fontext.c
Go to the documentation of this file.
00001 /*
00002  *
00003  * PROJECT:         fontext.dll
00004  * FILE:            dll/shellext/fontext/fontext.c
00005  * PURPOSE:         fontext.dll
00006  * PROGRAMMER:      Dmitry Chapyshev (dmitry@reactos.org)
00007  * UPDATE HISTORY:
00008  *      10-06-2008  Created
00009  */
00010 
00011 #include "fontext.h"
00012 
00013 static HINSTANCE hInstance;
00014 
00015 HRESULT WINAPI
00016 DllCanUnloadNow(VOID)
00017 {
00018     DPRINT1("DllCanUnloadNow() stubs\n");
00019     return S_OK;
00020 }
00021 
00022 HRESULT WINAPI
00023 DllGetClassObject(REFCLSID rclsid,
00024                   REFIID riid,
00025                   LPVOID *ppv)
00026 {
00027     DPRINT1("DllGetClassObject() stubs\n");
00028     return S_OK;
00029 }
00030 
00031 BOOL WINAPI
00032 DllMain(HINSTANCE hinstDLL,
00033         DWORD dwReason,
00034         LPVOID lpvReserved)
00035 {
00036     switch (dwReason)
00037     {
00038         case DLL_PROCESS_ATTACH:
00039             hInstance = hinstDLL;
00040             DisableThreadLibraryCalls(hInstance);
00041             break;
00042     }
00043 
00044     return TRUE;
00045 }

Generated on Sun May 27 2012 04:22:35 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.