Changeset 993 for trunk/src/ole32/regsvr32.cpp
- Timestamp:
- Sep 20, 1999, 10:38:20 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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 // ----------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.