ObjFW  Diff

Differences From Artifact [3326b854c7]:

  • File src/OFPlugin.h — part of check-in [179174571e] at 2009-04-19 17:06:46 on branch trunk — Don't use forwarding for OFPlugin.

    This is faster and we don't rely on forwarding which is broken in
    both, the GNU and the Apple runtime. Eventually, there will be an
    implementation for forwarding that does work around the runtime bugs,
    but still, an implementation of OFPlugin without forwarding makes more
    sense. (user: js, size: 652) [annotate] [blame] [check-ins using]

To Artifact [2b644c907d]:


19
20
21
22
23
24
25
26
27
28
29
	void *handle;
}

/**
 * Loads an OFPlugin from a file.
 *
 * \param path Path to the OFPlugin file. The suffix is appended automatically.
 * \return A new autoreleased OFPlugin
 */
+ pluginFromFile: (const char*)path;
@end







|



19
20
21
22
23
24
25
26
27
28
29
	void *handle;
}

/**
 * Loads an OFPlugin from a file.
 *
 * \param path Path to the OFPlugin file. The suffix is appended automatically.
 * \return The loaded OFPlugin
 */
+ pluginFromFile: (const char*)path;
@end