[源码下载] 不可或缺 Windows Native (13) - C++: 标准输入, 标准输出, 字符串内存流 作者:webabcd 介绍不可或缺 Windows Native 之 C++ 标准输入 标准输出 字符串内存流 示例1.标准输入, 标准输出CppIO1.h #pragma once #include <string> using namespace std; namespace NativeDll { class CppIO1 { public: string Demo();…
[源码下载] 不可或缺 Windows Native 系列文章索引 作者:webabcd 1.不可或缺 Windows Native (1) - C 语言: hello c 介绍不可或缺 Windows Native 之 C 语言 在 Windows Store Apps 中调用 C/C++ hello c 2.不可或缺 Windows Native (2) - C 语言: 常量,变量,基本数据类型 介绍不可或缺 Windows Native 之 C 语言 常量 变量 基本数据类型 3.不可或缺…
[源码下载] 不可或缺 Windows Native (4) - C 语言: 预处理命令,输入,输出 作者:webabcd 介绍不可或缺 Windows Native 之 C 语言 预处理命令 输入 输出 示例1.预处理命令cPreprocessor.h #ifndef _MYHEAD_PREPROCESSOR_ #define _MYHEAD_PREPROCESSOR_ #ifdef __cplusplus extern "C" #endif char *demo_cPreproce…
[源码下载] 不可或缺 Windows Native (2) - C 语言: 常量,变量,基本数据类型 作者:webabcd 介绍不可或缺 Windows Native 之 C 语言 常量 变量 基本数据类型 示例cDataType.h #ifndef _MYHEAD_DATATYPE_ #define _MYHEAD_DATATYPE_ #ifdef __cplusplus extern "C" #endif char *demo_cDataType(); char *demo_co…
[源码下载] 不可或缺 Windows Native (5) - C 语言: 数组 作者:webabcd 介绍不可或缺 Windows Native 之 C 语言 数组 示例cArray.h #ifndef _MYHEAD_ARRAY_ #define _MYHEAD_ARRAY_ #ifdef __cplusplus extern "C" #endif char *demo_cArray(); #endif cArray.c /* * 数组 * * * 定义数组,int ary[10…
[源码下载] 不可或缺 Windows Native (10) - C 语言: 文件 作者:webabcd 介绍不可或缺 Windows Native 之 C 语言 文件 示例cFile.h #ifndef _MYHEAD_FILE_ #define _MYHEAD_FILE_ #ifdef __cplusplus extern "C" #endif char *demo_cFile(char *rootPath); #endif cFile.c /* * 文件 * * 从用户角度讲,…
[源码下载] 不可或缺 Windows Native (25) - C++: windows app native, android app native, ios app native 作者:webabcd 介绍不可或缺 Windows Native 之 C++ windows app native android app native ios app native 示例一.演示 windows app native 开发1.native 层CppCx.h #pragma once #incl…
[源码下载] 不可或缺 Windows Native (11) - C++: hello c++, C++ 与 C语言的区别小介 作者:webabcd 介绍不可或缺 Windows Native 之 C++ hello c++ C++ 与 C语言的区别小介 示例1.hello c++CppHello.h // 保证文件只被编译一次(即使被多次引用,也只被编译一次) /* * #ifndef 的方式依赖于宏名字不能冲突 * #pragma once 保证同一个文件不会被多次编译,这里的“同一个文件…
[源码下载] 不可或缺 Windows Native (1) - C 语言: hello c 作者:webabcd 介绍不可或缺 Windows Native 之 C 语言 在 Windows Store Apps 中调用 C/C++ hello c 示例1.演示如何在 Windows Store Apps(C#) 中调用 C/C++,需要新建 Windows Runtime Component(C++) 项目NativeDll/Simple.h /* * .h 头文件 */ // 保证文件只被…
[源码下载] 不可或缺 Windows Native (7) - C 语言: 指针 作者:webabcd 介绍不可或缺 Windows Native 之 C 语言 指针 示例cPointer.h #ifndef _MYHEAD_POINTER_ #define _MYHEAD_POINTER_ #ifdef __cplusplus extern "C" #endif char *demo_cPointer(); #endif cPointer.c /* * 指针 */ #include…