Ignore:
Timestamp:
Dec 30, 1999, 12:19:54 PM (26 years ago)
Author:
sandervl
Message:

Implemented SEC_COMMIT flag for memory maps

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/wprocess.cpp

    r2144 r2264  
    1 /* $Id: wprocess.cpp,v 1.61 1999-12-19 19:54:32 sandervl Exp $ */
     1/* $Id: wprocess.cpp,v 1.62 1999-12-30 11:19:54 sandervl Exp $ */
    22
    33/*
     
    450450//******************************************************************************
    451451//******************************************************************************
     452HINSTANCE16 WIN32API LoadLibrary16(LPCTSTR lpszLibFile)
     453{
     454        dprintf(("ERROR: LoadLibrary16 %s, not implemented", lpszLibFile));
     455        return 0;
     456}
     457//******************************************************************************
     458//******************************************************************************
     459VOID WIN32API FreeLibrary16(HINSTANCE16 hinstance)
     460{
     461        dprintf(("ERROR: FreeLibrary16 %x, not implemented", hinstance));
     462}
     463//******************************************************************************
     464//******************************************************************************
     465FARPROC WIN32API GetProcAddress16(HMODULE hModule, LPCSTR lpszProc)
     466{
     467        dprintf(("ERROR: GetProcAddress16 %x %x, not implemented", hModule, lpszProc));
     468        return 0;
     469}
     470//******************************************************************************
     471//******************************************************************************
    452472HINSTANCE WIN32API LoadLibraryA(LPCTSTR lpszLibFile)
    453473{
Note: See TracChangeset for help on using the changeset viewer.