18 lines
284 B
C
18 lines
284 B
C
|
|
/*
|
||
|
|
Copyright (c) 2014 IOnU Security Inc. All rights reserved
|
||
|
|
Created February 2014 by Kendrick Webster
|
||
|
|
|
||
|
|
Types.h - header for primitive/ubiquitous types
|
||
|
|
*/
|
||
|
|
#pragma once
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
typedef enum
|
||
|
|
{
|
||
|
|
SUCCESS,
|
||
|
|
FAILURE
|
||
|
|
}
|
||
|
|
success_t;
|
||
|
|
|
||
|
|
typedef void (*vv_funcptr_t)(void);
|