completed initial implementation of qse_env_t

This commit is contained in:
2011-08-07 09:41:27 +00:00
parent c73a51dbbc
commit 6f7f368a91
3 changed files with 132 additions and 18 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: pio.h 455 2011-05-09 16:11:13Z hyunghwan.chung $
* $Id$
*
Copyright 2006-2011 Chung, Hyung-Hwan.
This file is part of QSE.
@ -24,11 +24,19 @@
#include <qse/types.h>
#include <qse/macros.h>
/** @file
* This file defines data types and functions that you can use to build
* an environment block.
*/
/**
* The qse_env_t type defines a cross-platform environment block.
*/
typedef struct qse_env_t qse_env_t;
struct qse_env_t
{
QSE_DEFINE_COMMON_FIELDS(pio)
QSE_DEFINE_COMMON_FIELDS(env)
struct
{