- Timestamp:
- Oct 16, 2001, 1:40:19 PM (24 years ago)
- Location:
- trunk/src/gdi32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/initgdi32.cpp
r7066 r7074 1 /* $Id: initgdi32.cpp,v 1. 7 2001-10-15 17:19:56sandervl Exp $1 /* $Id: initgdi32.cpp,v 1.8 2001-10-16 11:40:17 sandervl Exp $ 2 2 * 3 3 * DLL entry point … … 103 103 case 1 : 104 104 if(dllHandle) { 105 DestroyRegionSpace(); 105 106 UnregisterLxDll(dllHandle); 106 107 } -
trunk/src/gdi32/region.cpp
r7003 r7074 1 /* $Id: region.cpp,v 1.2 3 2001-10-10 22:20:22 phallerExp $ */1 /* $Id: region.cpp,v 1.24 2001-10-16 11:40:18 sandervl Exp $ */ 2 2 3 3 /* … … 71 71 hpsRegion = WinGetScreenPS(HWND_DESKTOP); 72 72 return hpsRegion != 0; 73 } 74 //****************************************************************************** 75 //****************************************************************************** 76 void DestroyRegionSpace() 77 { 78 if(hpsRegion) WinReleasePS(hpsRegion); 79 hpsRegion = 0; 73 80 } 74 81 //****************************************************************************** -
trunk/src/gdi32/region.h
r4223 r7074 1 //$Id: region.h,v 1. 2 2000-09-08 18:06:33sandervl Exp $1 //$Id: region.h,v 1.3 2001-10-16 11:40:19 sandervl Exp $ 2 2 #ifndef __REGION_H__ 3 3 #define __REGION_H__ 4 4 5 5 BOOL InitRegionSpace(); 6 void DestroyRegionSpace(); 6 7 7 8 BOOL WIN32API OSLibDeleteRegion(HANDLE hRegion);
Note:
See TracChangeset
for help on using the changeset viewer.