******* FROM TOP of the RC (TEXTINCLUDE section which references the Projects TLB file ******
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//
1 TEXTINCLUDE
BEGIN
"resource.h\0"
END
2 TEXTINCLUDE
BEGIN
"#include ""afxres.h""\r\n"
"\0"
END
3 TEXTINCLUDE
BEGIN
"#define _AFX_NO_SPLITTER_RESOURCES\r\n"
"#define _AFX_NO_OLE_RESOURCES\r\n"
"#define _AFX_NO_TRACKER_RESOURCES\r\n"
"#define _AFX_NO_PROPERTY_RESOURCES\r\n"
"\r\n"
"#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)\r\n"
"LANGUAGE 9, 1\r\n"
"#pragma code_page(1252)\r\n"
"#include ""res\\TestOKEv3.rc2"" // non-Microsoft Visual C++ edited resources\r\n"
"#include ""afxres.rc"" // Standard components\r\n"
"#endif\r\n"
"\r\n"
"1 TYPELIB ""TestOKEv3.tlb\0"
END
******************************************************************
****** BOTTOM Part of the RC file ******************************
#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 3 resource.
//
#define _AFX_NO_SPLITTER_RESOURCES
#define _AFX_NO_OLE_RESOURCES
#define _AFX_NO_TRACKER_RESOURCES
#define _AFX_NO_PROPERTY_RESOURCES
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
LANGUAGE 9, 1
#pragma code_page(1252)
#include "res\TestOKEv3.rc2" // non-Microsoft Visual C++ edited resources
#include "afxres.rc" // Standard components
#endif
// FROM MARVIN: NOTE THIS IS THE LINE THAT IS MALFORMED BY Visual Studio
1 TYPELIB "TestOKEv3.tlb
/////////////////////////////////////////////////////////////////////////////
#endif // not APSTUDIO_INVOKED
**************************************************************
*** IDL File contents *****************************************
// TestOKEv3.idl : IDL source for TestOKEv3
//
// This file will be processed by the MIDL tool to
// produce the type library (TestOKEv3.tlb) and marshalling code.
import "oaidl.idl";
import "ocidl.idl";
[
uuid(20846FA6-840B-4954-9521-3A8E407EBD21),
version(1.0),
helpstring("TestOKEv3 1.0 Type Library")
]
library TestOKEv3Lib
{
importlib("stdole2.tlb");
};
|