- Timestamp:
- Sep 20, 1999, 10:38:20 PM (26 years ago)
- Location:
- trunk/src/ole32
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ole32/makefile
r851 r993 22 22 OBJS = ole32.obj \ 23 23 moniker.obj \ 24 antimoniker.obj \ 24 25 initterm.obj \ 25 26 oString.obj \ -
trunk/src/ole32/ole32.def
r869 r993 18 18 CoCreateGuid = _CoCreateGuid@4 @6 19 19 CoCreateInstance = _CoCreateInstance@20 @7 20 CoCreateInstanceEx = _CoCreateInstanceEx@24 20 CoCreateInstanceEx = _CoCreateInstanceEx@24 @9999 21 21 CoDisconnectObject = _CoDisconnectObject@8 @8 22 22 CoDosDateTimeToFileTime = _CoDosDateTimeToFileTime@12 @9 … … 37 37 CoGetState = _CoGetState@0 @24 38 38 CoGetTreatAsClass = _CoGetTreatAsClass@8 @25 39 CoInitializeEx = _CoInitializeEx@8 39 CoInitializeEx = _CoInitializeEx@8 @9998 40 40 CoInitialize = _CoInitialize@4 @26 41 41 CoInitializeWOW = _CoInitializeWOW@0 @27 -
trunk/src/ole32/ole32exp.def
r869 r993 9 9 _CoCreateGuid@4 @6 10 10 _CoCreateInstance@20 @7 11 _CoCreateInstanceEx@24 @9999 11 12 _CoDisconnectObject@8 @8 12 13 _CoDosDateTimeToFileTime@12 @9 … … 27 28 _CoGetState@0 @24 28 29 _CoGetTreatAsClass@8 @25 30 _CoInitializeEx@8 @9998 29 31 _CoInitialize@4 @26 30 32 _CoInitializeWOW@0 @27 -
trunk/src/ole32/regsvr32.cpp
r872 r993 1 /* $Id: regsvr32.cpp,v 1. 2 1999-09-08 11:29:28davidr Exp $ */1 /* $Id: regsvr32.cpp,v 1.3 1999-09-20 20:38:20 davidr Exp $ */ 2 2 /* 3 3 * … … 14 14 */ 15 15 16 #include "ole32.h" 16 #include <windows.h> 17 #include <odinlx.h> 17 18 #include <stdarg.h> 19 #include <stdio.h> 20 #include <string.h> 18 21 #include <ctype.h> 22 19 23 20 24 // ====================================================================== … … 42 46 static HRESULT report_err(HRESULT hr, char * fmt, ...); 43 47 static HRESULT usage(char * fmt, ...); 48 static int WIN32API EntryPoint(HINSTANCE hInstance, HINSTANCE hPrevInstance, 49 LPSTR lpCmdLine, int nCmdShow); 44 50 45 51 // ====================================================================== 46 52 // Public API's 47 53 // ====================================================================== 48 extern int main(int argc, char * argv[]) 49 { 54 55 // ---------------------------------------------------------------------- 56 // main 57 // ---------------------------------------------------------------------- 58 int main(int argc, char *argv[]) 59 { 60 RegisterLxExe(EntryPoint, NULL); 61 50 62 HRESULT hr; 51 63 … … 76 88 // Private functions. 77 89 // ====================================================================== 90 91 // ---------------------------------------------------------------------- 92 // EntryPoint 93 // ---------------------------------------------------------------------- 94 static int WIN32API EntryPoint 95 (HINSTANCE hInstance, 96 HINSTANCE hPrevInstance, 97 LPSTR lpCmdLine, 98 int nCmdShow) 99 { 100 return S_OK; 101 } 78 102 79 103 // ---------------------------------------------------------------------- -
trunk/src/ole32/stubs.cpp
r872 r993 1 /* $Id: stubs.cpp,v 1. 7 1999-09-08 11:29:28davidr Exp $ */1 /* $Id: stubs.cpp,v 1.8 1999-09-20 20:38:20 davidr Exp $ */ 2 2 /* 3 3 * Win32 COM/OLE stubs for OS/2 … … 222 222 //******************************************************************************* 223 223 //******************************************************************************* 224 HRESULT WIN32API CreateAntiMoniker(LPMONIKER *ppmk)225 {226 dprintf(("OLE32: CreateAntiMoniker - stub"));227 return E_OUTOFMEMORY;228 }229 //*******************************************************************************230 //*******************************************************************************231 224 HRESULT WIN32API CreateBindCtx(DWORD reserved, LPBC *ppbc) 232 225 {
Note:
See TracChangeset
for help on using the changeset viewer.