Chameleon

Chameleon Svn Source Tree

Root/trunk/i386/libsaio/nvidia_helper.h

1/*
2 * Copyright (c) 2012 cparm <armelcadetpetit@gmail.com>. All rights reserved.
3 *
4 */
5
6
7#ifndef __LIBSAIO_NVIDIA_HELPER_H
8#define __LIBSAIO_NVIDIA_HELPER_H
9
10typedef struct cardList_t
11{
12char*model;
13uint32_tid;
14uint32_tsubid;
15uint64_tvideoRam;
16struct cardList_t*next;
17} cardList_t;
18
19void add_card(char *model, uint32_t id, uint32_t subid, uint64_t videoRam);
20void fill_card_list(void);
21cardList_t *FindCardWithIds(uint32_t id, uint32_t subid);
22
23#endif //__LIBSAIO_NVIDIA_HELPER_H
24

Archive Download this file

Revision: 2660