📄 cvxd.cpp
字号:
/* WATCOM Interface Generator Version 1.0 */
/* This file is generated by PowerBuilder.
* Do not modify this file.
* This file contains interface code called by PowerBuilder.
*/
#include <pbdll.h>
#include "vxd.hpp"
extern "C" {
void PB_EXPORT vxdunloadvxd( vxd *this_hdl );
char * PB_EXPORT vxdloadvxd( vxd *this_hdl, long hwnd );
vxd *PB_EXPORT vxd_CPP_CONSTRUCTOR();
void PB_EXPORT vxd_CPP_DESTRUCTOR( vxd *this_hdl );
}
void PB_EXPORT vxdunloadvxd( vxd *this_hdl ) {
this_hdl->unloadvxd( );
}
char * PB_EXPORT vxdloadvxd( vxd *this_hdl, long hwnd ) {
return( this_hdl->loadvxd( hwnd ) );
}
vxd *PB_EXPORT vxd_CPP_CONSTRUCTOR() {
return( new vxd );
}
void PB_EXPORT vxd_CPP_DESTRUCTOR( vxd *this_hdl ) {
delete this_hdl;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -