1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#ifndef BW_COOKIE_CEF_H #define BW_COOKIE_CEF_H #include <stdint.h> struct bw_CookieImpl { void* handle_ptr; }; struct bw_CookieJarImpl { void* handle_ptr; }; struct bw_CookieIteratorImpl { size_t index; void* visitor_ptr; }; #endif//BW_COOKIE_CEF_H