*** empty log message ***
This commit is contained in:
parent
b4c9fa5ee2
commit
8e6ede39af
@ -1,11 +1,11 @@
|
||||
/*
|
||||
* $Id: Awk.cpp,v 1.29 2007-03-19 05:39:44 bacon Exp $
|
||||
* $Id: Awk.cpp,v 1.30 2007-03-24 05:18:31 bacon Exp $
|
||||
*
|
||||
* {License}
|
||||
*/
|
||||
|
||||
#include "stdafx.h"
|
||||
#include "ase.h"
|
||||
#include "asecom.h"
|
||||
#include "Awk.h"
|
||||
#include "AwkExtio.h"
|
||||
#include "Buffer.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: Awk.h,v 1.16 2007-02-03 10:52:11 bacon Exp $
|
||||
* $Id: Awk.h,v 1.17 2007-03-24 05:18:32 bacon Exp $
|
||||
*
|
||||
* {License}
|
||||
*/
|
||||
@ -12,7 +12,7 @@
|
||||
#endif
|
||||
|
||||
#include "resource.h"
|
||||
#include "ase.h"
|
||||
#include "asecom.h"
|
||||
#include <ase/awk/awk.h>
|
||||
#include <ase/awk/val.h>
|
||||
#include "awk_cp.h"
|
||||
|
@ -1,11 +1,11 @@
|
||||
/*
|
||||
* $Id: AwkExtio.cpp,v 1.9 2007-02-03 10:52:12 bacon Exp $
|
||||
* $Id: AwkExtio.cpp,v 1.10 2007-03-24 05:18:32 bacon Exp $
|
||||
*
|
||||
* {License}
|
||||
*/
|
||||
|
||||
#include "stdafx.h"
|
||||
#include "ase.h"
|
||||
#include "asecom.h"
|
||||
#include "AwkExtio.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: Buffer.h,v 1.5 2007-02-03 10:52:12 bacon Exp $
|
||||
* $Id: Buffer.h,v 1.6 2007-03-24 05:18:32 bacon Exp $
|
||||
*
|
||||
* {License}
|
||||
*/
|
||||
@ -8,7 +8,7 @@
|
||||
#define _ASE_COM_BUFFER_H_
|
||||
|
||||
#include "resource.h"
|
||||
#include "ase.h"
|
||||
#include "asecom.h"
|
||||
|
||||
class ATL_NO_VTABLE CBuffer :
|
||||
public CComObjectRootEx<CComSingleThreadModel>,
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: ase.cpp,v 1.2 2007-02-03 10:52:12 bacon Exp $
|
||||
* $Id: asecom.cpp,v 1.1 2007-03-24 05:18:32 bacon Exp $
|
||||
*
|
||||
* {License}
|
||||
*/
|
||||
@ -11,7 +11,7 @@
|
||||
#include "stdafx.h"
|
||||
#include "resource.h"
|
||||
#include <initguid.h>
|
||||
#include "ase.h"
|
||||
#include "asecom.h"
|
||||
|
||||
#include "ase_i.c"
|
||||
#include "Awk.h"
|
@ -1,6 +1,6 @@
|
||||
; ase.def : Declares the module parameters.
|
||||
|
||||
LIBRARY "ase.dll"
|
||||
LIBRARY "asecom.dll"
|
||||
|
||||
EXPORTS
|
||||
DllCanUnloadNow @1 PRIVATE
|
@ -48,19 +48,19 @@ RSC=rc.exe
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo /o"debug/ase.bsc"
|
||||
# ADD BSC32 /nologo /o"debug/asecom.bsc"
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept
|
||||
# ADD LINK32 aseawk.lib asecmn.lib aseutl.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /implib:"debug/ase.lib" /pdbtype:sept /libpath:"$(OutDir)"
|
||||
# ADD LINK32 aseawk.lib asecmn.lib aseutl.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /implib:"debug/asecom.lib" /pdbtype:sept /libpath:"$(OutDir)"
|
||||
# Begin Custom Build - Performing registration
|
||||
IntDir=.\debug
|
||||
OutDir=.\../debug
|
||||
TargetPath=\projects\ase\debug\ase.dll
|
||||
InputPath=\projects\ase\debug\ase.dll
|
||||
TargetPath=\projects\ase\debug\asecom.dll
|
||||
InputPath=\projects\ase\debug\asecom.dll
|
||||
SOURCE="$(InputPath)"
|
||||
|
||||
"$(IntDir)\regsvr32.trg" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
|
||||
copy .\ase.tlb "$(OUTDIR)\ase.tlb"
|
||||
copy .\asecom.tlb "$(OUTDIR)\asecom.tlb"
|
||||
if "%OS%"=="" goto NOTNT
|
||||
if not "%OS%"=="Windows_NT" goto NOTNT
|
||||
regsvr32 /s /c "$(TargetPath)"
|
||||
@ -94,16 +94,16 @@ BSC32=bscmake.exe
|
||||
# ADD BSC32 /nologo /o"release/awk.bsc"
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386
|
||||
# ADD LINK32 aseawk.lib asecmn.lib aseutl.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 /implib:"release/ase.lib" /libpath:"$(OutDir)"
|
||||
# ADD LINK32 aseawk.lib asecmn.lib aseutl.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 /implib:"release/asecom.lib" /libpath:"$(OutDir)"
|
||||
# Begin Custom Build - Performing registration
|
||||
IntDir=.\release
|
||||
OutDir=.\../release
|
||||
TargetPath=\projects\ase\release\ase.dll
|
||||
InputPath=\projects\ase\release\ase.dll
|
||||
TargetPath=\projects\ase\release\asecom.dll
|
||||
InputPath=\projects\ase\release\asecom.dll
|
||||
SOURCE="$(InputPath)"
|
||||
|
||||
"$(IntDir)\regsvr32.trg" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
|
||||
copy .\ase.tlb "$(OUTDIR)\ase.tlb"
|
||||
copy .\asecom.tlb "$(OUTDIR)\asecom.tlb"
|
||||
if "%OS%"=="" goto NOTNT
|
||||
if not "%OS%"=="Windows_NT" goto NOTNT
|
||||
regsvr32 /s /c "$(TargetPath)"
|
||||
@ -126,20 +126,20 @@ SOURCE="$(InputPath)"
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\ase.cpp
|
||||
SOURCE=.\asecom.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\ase.def
|
||||
SOURCE=.\asecom.def
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\ase.idl
|
||||
# ADD MTL /tlb ".\ase.tlb" /h "ase.h" /iid "ase_i.c" /Oicf
|
||||
SOURCE=.\asecom.idl
|
||||
# ADD MTL /tlb ".\asecom.tlb" /h "asecom.h" /iid "asecom_i.c" /Oicf
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\ase.rc
|
||||
SOURCE=.\asecom.rc
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: ase.idl,v 1.16 2007-01-25 14:14:56 bacon Exp $
|
||||
* $Id: asecom.idl,v 1.1 2007-03-24 05:18:32 bacon Exp $
|
||||
*/
|
||||
|
||||
import "oaidl.idl";
|
@ -40,7 +40,7 @@ END
|
||||
|
||||
3 TEXTINCLUDE DISCARDABLE
|
||||
BEGIN
|
||||
"1 TYPELIB ""ase.tlb""\r\n"
|
||||
"1 TYPELIB ""asecom.tlb""\r\n"
|
||||
"\0"
|
||||
END
|
||||
|
||||
@ -75,7 +75,7 @@ BEGIN
|
||||
VALUE "FileVersion", "1, 0, 0, 1\0"
|
||||
VALUE "InternalName", "ASE\0"
|
||||
VALUE "LegalCopyright", "Copyright 2006\0"
|
||||
VALUE "OriginalFilename", "ase.dll\0"
|
||||
VALUE "OriginalFilename", "asecom.dll\0"
|
||||
VALUE "ProductName", "ASE Module\0"
|
||||
VALUE "ProductVersion", "1, 0, 0, 1\0"
|
||||
VALUE "OLESelfRegister", "\0"
|
||||
@ -119,7 +119,7 @@ END
|
||||
//
|
||||
// Generated from the TEXTINCLUDE 3 resource.
|
||||
//
|
||||
1 TYPELIB "ase.tlb"
|
||||
1 TYPELIB "asecom.tlb"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
#endif // not APSTUDIO_INVOKED
|
Loading…
Reference in New Issue
Block a user