iCAx开思网

标题: 生成四方块的代码错在哪里?先谢谢啦! [打印本页]

作者: qindongjun88    时间: 2009-5-29 19:44
标题: 生成四方块的代码错在哪里?先谢谢啦!
下面是生成生成四方块的代码,在编译时出错,请高手帮忙看看是什么原因……


//////////////////////////////////////////////////////////////////////////////
//
//  41.cpp
//
//  Description:
//      Contains Unigraphics entry points for the application.
//
//////////////////////////////////////////////////////////////////////////////
//  Include files
#include <uf.h>
#include <uf_exit.h>
#include <uf_ui.h>
#if ! defined ( __hp9000s800 ) && ! defined ( __sgi ) && ! defined ( __sun )
# include <strstream>
#   include <iostream>
using std:strstream;
using std::endl;
using std::ends;
using std::cerr;
#else
# include <strstream.h>
#   include <iostream.h>
#endif
#include "41.h"
//----------------------------------------------------------------------------
//  Activation Methods
//----------------------------------------------------------------------------
//  Unigraphics Startup
//      This entry point activates the application at Unigraphics startup
extern "C" DllExport void ufsta( char *param, int *returnCode, int rlen )
{
    /* Initialize the API environment */
    int errorCode = UF_initialize();
    if ( 0 == errorCode )
    {
        /* TODO: Add your application code here */
   double corner_pt[3]={10,10,10};
         char *edge_len[3]={"30","20","10"};
         tag_t blk_tag;
         UF_MODL_create_block1(UF_NULLSIGN,corner_pt,edge_len,&blk_tag);
        /* Terminate the API environment */
        errorCode = UF_terminate();
    }
    /* Print out any error messages */
    PrintErrorMessage( errorCode );
}
//----------------------------------------------------------------------------
//  Utilities
//----------------------------------------------------------------------------
// Unload Handler
//     This function specifies when to unload your application from Unigraphics.
//     If your application registers a callback (from a MenuScript item or a
//     User Defined Object for example), this function MUST return
//     "UF_UNLOAD_UG_TERMINATE".
extern "C" int ufusr_ask_unload( void )
{
    return( UF_UNLOAD_UG_TERMINATE );
}
/* PrintErrorMessage
**
**     Prints error messages to standard error and the Unigraphics status
**     line. */
static void PrintErrorMessage( int errorCode )
{
    if ( 0 != errorCode )
    {
        /* Retrieve the associated error message */
        char message[133];
        UF_get_fail_message( errorCode, message );
        /* Print out the message */
        UF_UI_set_status( message );
        // Construct a buffer to hold the text.
        ostrstream error_message;
        // Initialize the buffer with the required text.
        error_message << endl
                      << "Error:" << endl
                      << message
                      << endl << endl << ends;
     // Write the message to standard error
        cerr << error_message.str();
    }
}

本帖最后由 qindongjun88 于 2009-5-29 19:46 编辑
作者: qindongjun88    时间: 2009-5-29 19:50
我上面那段代码有什么问题啊!高手帮忙看看!!
为什么上面那段代码在编译时会报:41.obj - 1 error(s), 0 warning(s)  这个错呢???

本帖最后由 qindongjun88 于 2009-5-30 08:20 编辑
作者: 173173    时间: 2009-5-29 20:39
头文件加一下
作者: sz_gsw    时间: 2009-5-30 19:01
头文件未包含
作者: qindongjun88    时间: 2009-5-30 20:38
请问楼上两位仁兄,头文件不是VC自动生成的吗?楼上所说的“头文件未包含 ”是指什么?头文件怎么加啊!??请多多指教小弟……多谢啦!!!

本帖最后由 qindongjun88 于 2009-5-30 20:39 编辑
作者: ffhi    时间: 2009-6-2 16:13
#include <uf.h
#include <uf_exit.h>
#include <uf_ui.h>
后加
#include<uf_modl.h>
作者: qindongjun88    时间: 2009-6-3 17:36
问题已经解决!!!多谢楼上三位兄弟的热心帮助。
作者: haoqiang9621    时间: 2009-6-13 14:25
:)




欢迎光临 iCAx开思网 (https://www.icax.org/) Powered by Discuz! X3.3