- Timestamp:
- Aug 2, 2000, 6:32:43 PM (25 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/msvfw32/msvfw32.cpp
r1607 r3931 1 /* $Id: msvfw32.cpp,v 1.5 2000-08-02 16:27:41 bird Exp $ */ 1 2 /* 2 3 * Copyright 1998 Marcus Meissner … … 9 10 10 11 #define ICOM_CINTERFACE 1 11 #define strcasecmp strcmp 12 #define strcasecmp strcmp 12 13 13 14 #include <os2win.h> … … 93 94 sprintf(codecname,"%s.%s",type,handler); 94 95 95 /* Well, lParam2 is in fact a LPVIDEO_OPEN_PARMS, but it has the 96 /* Well, lParam2 is in fact a LPVIDEO_OPEN_PARMS, but it has the 96 97 * same layout as ICOPEN 97 98 */ … … 155 156 switch (wMode) { 156 157 case ICMODE_FASTCOMPRESS: 157 case ICMODE_COMPRESS: 158 case ICMODE_COMPRESS: 158 159 querymsg = ICM_COMPRESS_QUERY; 159 160 break; … … 192 193 INT depth,INT dx,INT dy 193 194 ) { 194 HIC tmphic = hic; 195 HIC tmphic = hic; 195 196 LRESULT lres; 196 197 … … 223 224 if (lpbiIn->biBitCount == 8) 224 225 depth = 8; 225 226 226 227 return hic; 227 228 errout: … … 257 258 } 258 259 259 DWORD VFWAPIV 260 DWORD VFWAPIV 260 261 ICDecompress(HIC hic,DWORD dwFlags,LPBITMAPINFOHEADER lpbiFormat,LPVOID lpData,LPBITMAPINFOHEADER lpbi,LPVOID lpBits) { 261 262 ICDECOMPRESS icd; … … 668 669 LONG lQuality, // quality to use 669 670 LONG plSize) // compress to this size (0=whatever) 670 { 671 { 671 672 #ifdef DEBUG 672 673 dprintf(("MSVFW32: ICImageCompress not implemented\n")); … … 685 686 LPVOID lpBits, // data to decompress 686 687 LPBITMAPINFO lpbiOut) // decompress to this (NULL ==> default) 687 { 688 { 688 689 #ifdef DEBUG 689 690 dprintf(("MSVFW32: ICImageDecompress not implemented\n")); … … 697 698 */ 698 699 BOOL VFWAPI ICInstall(DWORD fccType, DWORD fccHandler, LPARAM lParam, LPSTR szDesc, UINT wFlags) 699 { 700 { 700 701 #ifdef DEBUG 701 702 dprintf(("MSVFW32: ICInstall not implemented\n")); … … 709 710 */ 710 711 BOOL VFWAPI ICRemove(DWORD fccType, DWORD fccHandler, UINT wFlags) 711 { 712 { 712 713 #ifdef DEBUG 713 714 dprintf(("MSVFW32: ICRemove not implemented\n")); -
trunk/src/oleaut32/oList.cpp
r2018 r3931 1 /* $Id: oList.cpp,v 1.2 2000-08-02 16:28:19 bird Exp $ */ 1 2 /* 2 3 * oList.cpp -
trunk/src/olepro32/olepro32.cpp
r2842 r3931 1 /* $Id: olepro32.cpp,v 1.2 2000-08-02 16:29:41 bird Exp $ */ 1 2 /* 2 3 * OlePro32 Stubs … … 31 32 return S_OK; 32 33 } 33 34 34 35 /***************************************************** 35 36 * OleCreatePropertyFrame … … 37 38 HRESULT WINAPI OleCreatePropertyFrame( HWND hwndOwner, UINT x, UINT y, 38 39 LPCOLESTR lpszCaption,ULONG cObjects, LPUNKNOWN* ppUnk, 39 ULONG cPages, LPCLSID pPageClsID, LCID lcid, 40 ULONG cPages, LPCLSID pPageClsID, LCID lcid, 40 41 DWORD dwReserved, LPVOID pvReserved ) 41 42 { … … 45 46 return S_OK; 46 47 } 47 48 48 49 /***************************************************** 49 50 * OleLoadPicture … … 57 58 return S_OK; 58 59 } 59 60 60 61 HRESULT WINAPI DllUnregisterServer() 61 62 { -
trunk/src/olesvr32/olesvr32.cpp
r1710 r3931 1 /* $Id: olesvr32.cpp,v 1.4 2000-08-02 16:32:43 bird Exp $ */ 1 2 /* 2 3 * OLESVR32 library … … 4 5 * Copyright 1995 Martin von Loewis 5 6 * Copyright 1999 Jens Wiessner 6 */ 7 8 /* At the moment, these are only empty stubs. 7 * 8 * At the moment, these are only empty stubs. 9 9 */ 10 10
Note:
See TracChangeset
for help on using the changeset viewer.