lib.c

来自「用于TM1300/PNX1300系列DSP(主要用于视频处理)的动态下载程序源码」· C语言 代码 · 共 37 行

C
37
字号
/*
 * Copyright (c) 1995,2000 TriMedia Technologies Inc.         
 *
 * +------------------------------------------------------------------+
 * | This software is furnished under a license and may only be used  |
 * | and copied in accordance with the terms and conditions of  such  |
 * | a license and with the inclusion of this copyright notice. This  |
 * | software or any other copies of this software may not be provided|
 * | or otherwise made available to any other person.  The ownership  |
 * | and title of this software is not transferred.                   |
 * |                                                                  |
 * | The information in this software is subject  to change without   |
 * | any  prior notice and should not be construed as a commitment by |
 * | TriMedia Technologies.                                           |
 * |                                                                  |
 * | this code and information is provided "as is" without any        |
 * | warranty of any kind, either expressed or implied, including but |
 * | not limited to the implied warranties of merchantability and/or  |
 * | fitness for any particular purpose.                              |
 * +------------------------------------------------------------------+
 *
 *  Module name              : lib.c    1.2
 *
 *  Last update              : 17:17:27 - 00/06/16
 *
 *  Description              : Simple dynamic library example.
 *
 */
 
#include "stdio.h"

void dll_function( int x )
{
    printf("dll_function: x= %d\n", x);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?