Revision aaab2fffbe0b3d2c96578c4442858c9892f6212b authored by alex@thinkpad on 16 April 2018, 04:48:54 UTC, committed by alex@thinkpad on 16 April 2018, 04:48:54 UTC
(user must enter the desired mode manually before running the test, as it's also useful while in LiveView, Canon menu etc)
1 parent 78d2abc
Raw File
stub.h
/*
 * Copyright (C) 2013 Magic Lantern Team
 *
 * This file is part of Magic Lantern.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 */

#ifndef __STUB_H__
#define __STUB_H__

#define NSTUB(addr,name) \
	.global name; \
	.extern name; \
	name = addr

#endif /* __STUB_H__ */
back to top