|
-------------------Configuration: exc1 - Win32 Debug--------------------$ f& Q$ k9 V" {+ U. j& X1 g+ m
Compiling...0 q5 s$ j+ A: q
app.cpp
3 N5 a6 c# } T: a2 @/ k- pLinking.... ~, ]9 `" G* b( X
Creating library DebUG/exc1.lib and object Debug/exc1.exp
# Z$ [0 k( U$ I" G; z9 qLINK : warning LNK4098: defaultlib "MSVCRT" conflicts with use of other libs; use /NODEFAULTLIB:library- N; F+ _0 T$ l B5 D1 L, S
nafxcwd.lib(appcore.obj) : error LNK2001: unresolved external symbol ___argv' u$ t8 b! ^5 K4 i0 G" \) @
nafxcwd.lib(appcore.obj) : error LNK2001: unresolved external symbol ___argc8 R; z/ q, V; B7 Y) y. I2 w8 r
nafxcwd.lib(filelist.obj) : error LNK2001: unresolved external symbol __mbctype
4 U+ Y* B- D* p; J* xnafxcwd.lib(timecore.obj) : error LNK2001: unresolved external symbol __mbctype- e* n) \2 L! }/ ]" R, m" E+ T8 J4 w
nafxcwd.lib(apphelp.obj) : error LNK2001: unresolved external symbol __mbctype
/ h+ e @) d% {1 m A# XDebug/exc1.dll : fatal error LNK1120: 3 unresolved externals4 v( A( J' f' Q( j/ I' \
执行 link.exe 时出错.* H! ~/ u; I# N6 W- m3 M* w
; E: X$ z' u: I [
exc1.dll - 1 error(s), 0 warning(s)
6 N, F. c0 X6 z! {' M1 c+ ^
, q1 ^5 r1 p, _+ O. g+ f" n S
+ F, y& m/ S5 c9 o6 W9 @% B原例子程序: h/ L$ x$ M1 n" J8 W& v# g
file:///C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/msohtml1/01/clip_image002.jpgMain.h文件中放置了应用文件所需的头文件、宏定义、函数与结构声明等。用户应用文件只需包含文件Main.h,就能够包含需要的所有资源。Main.cpp文件中放置工程出口(User Exit)函数,并在该函数中注册一个应用。通常情况下,User Exit函数中不含有详细代码。0 c' Y \- `/ g
file:///C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/msohtml1/01/clip_image004.jpg在Main.h中添加以下代码:#ifndef MAIN_H_INCLUDED#define MAIN_H_INCLUDED #include <uf.h>#include <uf_cfi.h>#include <uf_defs.h>#include <uf_exit.h>#include <uf_mb.h> #include <uf_styler.h>#include <uf_ui.h>#include <uf_assem.h>#include <uf_attr.h>#include <uf_layer.h>#include <uf_object_types.h>#include <uf_modl.h>#include <uf_disp.h>#include <uf_sket.h>#include <uf_facet.h>#include <uf_draw.h>#include <uf_part.h>#include <uf_obj.h>#include "Resource.h" #include "Application.h"//声明一个激活应用的列表结构static UF_MB_action_t act_table[] = { {"Test", [url=]NULL,[/url][微软用户1] Test, NULL }, {NULL, NULL, NULL[url=], 0[/url][微软用户2] }/* This is a NULL terminated list */};#endiffile:///C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/msohtml1/01/clip_image006.jpg在Main.cpp中添加如下代码:#include "stdafx.h"#include "Main.h"extern "C" DllExport void ufsta (char*param, int *retcode, int rlen){//注册菜单按钮 AFX_MANAGE_STATE(AfxgetStaticModuleState); //防止全局变量不同步而可能导致的编译出错 int error_code; if ((UF_initialize()) != 0) return; if ( (error_code = UF_MB_add _actions (act_table) )!= 0 )//注册UG应用 { charfail_message[133]=""; UF_get_fail_message(error_code, fail_message); AfxMessageBox(fail_message); } UF_terminate(); return;}file:///C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/msohtml1/01/clip_image008.jpg在Application.h中添加如下代码,用来声明应用函数Test:UF_MB_cb_status_t Test(UF_MB_widget_t widget,UF_MB_data_t client_data, UF_MB_activated_button_p_t button);file:///C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/msohtml1/01/clip_image010.jpg在Application.cpp中添加如下代码,实现应用函数Test:#include "stdafx.h"#include "Main.h" UF_MB_cb_status_t Test(UF_MB_widget_t widget,UF_MB_data_t client_data, UF_MB_activated_button_p_t button){/*Make sure User Function is available*/if(UF_initialize()!=0) return(UF_MB_CB_CONTINUE);uc1601("hello world",1);UF_terminate();return(UF_MB_CB_CONTINUE);}
+ ~* Q d! @4 A, a8 d: ^
( p7 n! @# |" \+ m
7 a6 R+ i5 x+ J- R" j6 E9 U! {/ s' q# ?/ P4 Q
' m( F* h' T) d( F1 _* l) K
$ m/ _) m4 i L2 A8 f6 I
, }5 O+ w# {. Q4 f4 x4 n9 G {) I' h* f m7 l! V: B
% ?9 R/ ~+ ?2 \. z
6 S1 o# B8 H4 `, ~8 C |
|