Cosmo-Z Library  2.0.5
ライブラリのオープン

ソフトウェアで最初にCosmo-Zライブラリのオープンします。

csz_open()がTRUEを返せば、オープンは成功です。 ドライバのインストールがされていない場合にはFALSEを返します。

コードの例を以下に示します。

#include <cosmoz.h>

int main(int argc, char *argv[]) { if(csz_open() == FALSE) { printf("Cosmoz driver open failed.\n"); return FALSE; } printf("Cosmoz driver open successfully.\n"); ・・・ csz_close(); printf("Cosmo-Z driver closed.\n"); return 0; }